summaryrefslogtreecommitdiff
path: root/src/backend/postmaster/postmaster.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-02-06 19:27:22 +0000
committerBruce Momjian <bruce@momjian.us>1997-02-06 19:27:22 +0000
commit89868af4258bde91db62c2e7ae00f414c4d1c717 (patch)
treea5fed356c64b44d53aa1e2afc1b618ca38695c91 /src/backend/postmaster/postmaster.c
parent2c9dbc57e597ccf7d1e6b3d0291bda9e9517f522 (diff)
Remove extra paren in ifdef.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r--src/backend/postmaster/postmaster.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index ad4e76d3ecd..b1a5aeb8c39 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.37 1997/02/06 06:15:49 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.38 1997/02/06 19:27:22 momjian Exp $
*
* NOTES
*
@@ -86,7 +86,7 @@
#if defined(DBX_VERSION)
# define FORK() (0)
#else
-# ifndef HAVE_VFORK)
+# ifndef HAVE_VFORK
# define FORK() fork()
# else
# define FORK() vfork()