error in pg_ctl.c

From: "Merlin Moncure" <merlin(dot)moncure(at)rcsonline(dot)com>
To: <pgsql-patches(at)postgresql(dot)org>
Cc: "Bruce Momjian" <pgman(at)candle(dot)pha(dot)pa(dot)us>
Subject: error in pg_ctl.c
Date: 2004-12-22 23:36:04
Message-ID: 6EE64EF3AB31D5448D0007DD34EEB3412A757F@Herge.rcsinc.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

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

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2004-12-23 00:03:40 Re: error in pg_ctl.c
Previous Message Bruce Momjian 2004-12-22 21:03:21 Re: Bgwriter behavior