mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix compiler warning about uninitialized variable
This commit is contained in:
parent
4253f016c9
commit
9beb9e761b
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* Copyright (c) 2001-2008, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.183 2008/11/03 19:03:41 alvherre Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.184 2008/11/04 11:04:06 petere Exp $
|
||||
* ----------
|
||||
*/
|
||||
#include "postgres.h"
|
||||
|
|
@ -3405,7 +3405,7 @@ backend_read_statsfile(void)
|
|||
*/
|
||||
for (count = 0; count < PGSTAT_POLL_LOOP_COUNT; count++)
|
||||
{
|
||||
TimestampTz file_ts;
|
||||
TimestampTz file_ts = 0;
|
||||
|
||||
CHECK_FOR_INTERRUPTS();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue