Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 63a9072

Browse files
committed
Remove extra parenthesis.
1 parent bfa5f30 commit 63a9072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_ctl/pg_ctl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.51 2004/12/21 17:58:30 momjian Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.52 2004/12/23 00:03:24 tgl Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -1078,7 +1078,7 @@ pgwin32_doRunAsService(void)
10781078
SERVICE_TABLE_ENTRY st[] = {{register_servicename, pgwin32_ServiceMain},
10791079
{NULL, NULL}};
10801080

1081-
if (StartServiceCtrlDispatcher(st)) == 0)
1081+
if (StartServiceCtrlDispatcher(st) == 0)
10821082
{
10831083
write_stderr(_("%s: could not start service \"%s\": error code %d\n"), progname, register_servicename, (int) GetLastError());
10841084
exit(1);

0 commit comments

Comments
 (0)