Commit 63a90720 authored by Tom Lane's avatar Tom Lane

Remove extra parenthesis.

parent bfa5f304
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.51 2004/12/21 17:58:30 momjian Exp $ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.52 2004/12/23 00:03:24 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1078,7 +1078,7 @@ pgwin32_doRunAsService(void) ...@@ -1078,7 +1078,7 @@ pgwin32_doRunAsService(void)
SERVICE_TABLE_ENTRY st[] = {{register_servicename, pgwin32_ServiceMain}, SERVICE_TABLE_ENTRY st[] = {{register_servicename, pgwin32_ServiceMain},
{NULL, NULL}}; {NULL, NULL}};
if (StartServiceCtrlDispatcher(st)) == 0) if (StartServiceCtrlDispatcher(st) == 0)
{ {
write_stderr(_("%s: could not start service \"%s\": error code %d\n"), progname, register_servicename, (int) GetLastError()); write_stderr(_("%s: could not start service \"%s\": error code %d\n"), progname, register_servicename, (int) GetLastError());
exit(1); exit(1);
......
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