Getting a win32 compiler error based on yesterday's update to pg_ctl.c.It's a 1 liner (1081):if (StartServiceCtrlDispatcher(st)) == 0) to if (StartServiceCtrlDispatcher(st) == 0)or, as I prefer it :)if (0 == StartServiceCtrlDispatcher(st))
Merlin