error in pg_ctl.c

Started by Merlin Moncureover 21 years ago2 messagespatches
Jump to latest
#1Merlin Moncure
merlin.moncure@rcsonline.com

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

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Merlin Moncure (#1)
Re: error in pg_ctl.c

"Merlin Moncure" <merlin.moncure@rcsonline.com> writes:

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)

Ooops. Patch applied.

regards, tom lane