aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-14 05:03:47 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-14 05:03:47 +0000
commit15a645014a67f02206ffb34f65557acbd49fd54d (patch)
treeaf2f0ef82f577abf7a0fae15ccca9a4925c6f2c2 /src
parent988a9adfbd28ab8b518c05ac6495cefed5959df5 (diff)
downloadpostgresql-15a645014a67f02206ffb34f65557acbd49fd54d.tar.gz
postgresql-15a645014a67f02206ffb34f65557acbd49fd54d.zip
I grabbed the latest version of the source code via sup this morning,
and found out that one of the patches is a show stopper for compiling under a strict ansi package. Please make sure the following fix makes it into the 1.02.1 release... Thanks. -Kurt
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/error/elog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c
index c961aee3dbf..d9f618c8e32 100644
--- a/src/backend/utils/error/elog.c
+++ b/src/backend/utils/error/elog.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.4 1996/07/22 21:58:26 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.5 1996/08/14 05:03:47 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -42,7 +42,7 @@ extern jmp_buf Warn_restart;
* Old error logging function.
*/
void
-elog(int lev, char *fmt, ... )
+elog(int lev, const char *fmt, ... )
{
va_list ap;
char buf[ELOG_MAXLEN], line[ELOG_MAXLEN];