Suppress uninitialized-variable warning.

This commit is contained in:
Tom Lane 2007-08-21 01:47:19 +00:00
parent 440a330a31
commit 25a4a77985

View File

@ -18,7 +18,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.37 2007/08/19 01:41:24 adunstan Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/syslogger.c,v 1.38 2007/08/21 01:47:19 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -1007,7 +1007,7 @@ static void
logfile_rotate(bool time_based_rotation, int size_rotation_for) logfile_rotate(bool time_based_rotation, int size_rotation_for)
{ {
char *filename; char *filename;
char *csvfilename; char *csvfilename = NULL;
FILE *fh; FILE *fh;
rotation_requested = false; rotation_requested = false;