Commit 9445d112 authored by Robert Haas's avatar Robert Haas

Fix Windows compile break in 6f3bd98e.

parent d4fca5e6
...@@ -3919,7 +3919,8 @@ PgstatCollectorMain(int argc, char *argv[]) ...@@ -3919,7 +3919,8 @@ PgstatCollectorMain(int argc, char *argv[])
wr = WaitLatchOrSocket(MyLatch, wr = WaitLatchOrSocket(MyLatch,
WL_LATCH_SET | WL_POSTMASTER_DEATH | WL_SOCKET_READABLE | WL_TIMEOUT, WL_LATCH_SET | WL_POSTMASTER_DEATH | WL_SOCKET_READABLE | WL_TIMEOUT,
pgStatSock, pgStatSock,
2 * 1000L /* msec */ ); 2 * 1000L /* msec */,
WAIT_EVENT_PGSTAT_MAIN);
#endif #endif
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment