Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 15a6450

Browse files
committed
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
1 parent 988a9ad commit 15a6450

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/error/elog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.4 1996/07/22 21:58:26 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.5 1996/08/14 05:03:47 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -42,7 +42,7 @@ extern jmp_buf Warn_restart;
4242
* Old error logging function.
4343
*/
4444
void
45-
elog(int lev, char *fmt, ... )
45+
elog(int lev, const char *fmt, ... )
4646
{
4747
va_list ap;
4848
char buf[ELOG_MAXLEN], line[ELOG_MAXLEN];

0 commit comments

Comments
 (0)