mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
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
This commit is contained in:
parent
988a9adfbd
commit
15a645014a
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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.
|
* Old error logging function.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
elog(int lev, char *fmt, ... )
|
elog(int lev, const char *fmt, ... )
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
char buf[ELOG_MAXLEN], line[ELOG_MAXLEN];
|
char buf[ELOG_MAXLEN], line[ELOG_MAXLEN];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user