From: Robert Haas Date: Tue, 4 Oct 2016 17:14:19 +0000 (-0400) Subject: Fix another Windows compile break. X-Git-Tag: REL_10_BETA1~1614 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=6c9c95ed1b89add3a78d115a90e92d765b4c859a;p=postgresql.git Fix another Windows compile break. Commit 6f3bd98ebfc008cbd676da777bb0b2376c4c4bfa is still making the buildfarm unhappy. This time it's mastodon that is complaining. --- diff --git a/src/backend/postmaster/syslogger.c b/src/backend/postmaster/syslogger.c index af7136760a3..fd62d660c4b 100644 --- a/src/backend/postmaster/syslogger.c +++ b/src/backend/postmaster/syslogger.c @@ -477,7 +477,8 @@ SysLoggerMain(int argc, char *argv[]) (void) WaitLatch(MyLatch, WL_LATCH_SET | cur_flags, - cur_timeout); + cur_timeout, + WAIT_EVENT_SYSLOGGER_MAIN); EnterCriticalSection(&sysloggerSection); #endif /* WIN32 */