diff options
author | Michael Meskes <meskes@postgresql.org> | 1999-11-02 12:11:53 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 1999-11-02 12:11:53 +0000 |
commit | 7ff8a1803075c362159dacd19d2ab53b88b3af56 (patch) | |
tree | 4d0343ea24ff051a40776ba37a95db1459ddd3f0 /src/interfaces/ecpg/lib | |
parent | d9e4966be1d3526b31f87d1a24e67ec28110332b (diff) | |
download | postgresql-7ff8a1803075c362159dacd19d2ab53b88b3af56.tar.gz postgresql-7ff8a1803075c362159dacd19d2ab53b88b3af56.zip |
*** empty log message ***
Diffstat (limited to 'src/interfaces/ecpg/lib')
-rw-r--r-- | src/interfaces/ecpg/lib/Makefile.in | 4 | ||||
-rw-r--r-- | src/interfaces/ecpg/lib/ecpglib.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/lib/Makefile.in b/src/interfaces/ecpg/lib/Makefile.in index 406407b02a3..fe75bfc13f4 100644 --- a/src/interfaces/ecpg/lib/Makefile.in +++ b/src/interfaces/ecpg/lib/Makefile.in @@ -6,13 +6,13 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.49 1999/10/13 11:38:35 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.50 1999/11/02 12:11:53 meskes Exp $ # #------------------------------------------------------------------------- NAME= ecpg SO_MAJOR_VERSION= 3 -SO_MINOR_VERSION= 0.4 +SO_MINOR_VERSION= 0.5 SRCDIR= @top_srcdir@ include $(SRCDIR)/Makefile.global diff --git a/src/interfaces/ecpg/lib/ecpglib.c b/src/interfaces/ecpg/lib/ecpglib.c index cd180bfcf37..6e711b4fcb2 100644 --- a/src/interfaces/ecpg/lib/ecpglib.c +++ b/src/interfaces/ecpg/lib/ecpglib.c @@ -1294,7 +1294,7 @@ void sqlprint(void) { sqlca.sqlerrm.sqlerrmc[sqlca.sqlerrm.sqlerrml] = '\0'; - printf("sql error %s\n", sqlca.sqlerrm.sqlerrmc); + fprintf(stderr, "sql error %s\n", sqlca.sqlerrm.sqlerrmc); } static bool |