mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Fix Windows compile break in 6f3bd98ebf.
This commit is contained in:
parent
d4fca5e6c7
commit
9445d1121d
1 changed files with 2 additions and 1 deletions
|
|
@ -3919,7 +3919,8 @@ PgstatCollectorMain(int argc, char *argv[])
|
|||
wr = WaitLatchOrSocket(MyLatch,
|
||||
WL_LATCH_SET | WL_POSTMASTER_DEATH | WL_SOCKET_READABLE | WL_TIMEOUT,
|
||||
pgStatSock,
|
||||
2 * 1000L /* msec */ );
|
||||
2 * 1000L /* msec */,
|
||||
WAIT_EVENT_PGSTAT_MAIN);
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue