diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-08 00:42:09 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-08 00:42:09 +0000 |
commit | 98b3ae7378a0fd9f7c9619a9311ac1e66877ec4a (patch) | |
tree | d32f38888a23dd6a3128c4770577972aa0ceda75 /src/backend/bootstrap/bootstrap.c | |
parent | 08e1664ab467d867860ec9925be56357d60abe4a (diff) | |
download | postgresql-98b3ae7378a0fd9f7c9619a9311ac1e66877ec4a.tar.gz postgresql-98b3ae7378a0fd9f7c9619a9311ac1e66877ec4a.zip |
Add missing colon to getopt() arg.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 192303f9d61..01719a91a67 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.122 2002/03/02 21:39:21 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.123 2002/03/08 00:42:09 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -248,7 +248,7 @@ BootstrapMain(int argc, char *argv[]) * variable */ } - while ((flag = getopt(argc, argv, "B:dD:Fo:px:")) != -1) + while ((flag = getopt(argc, argv, "B:d:D:Fo:px:")) != -1) { switch (flag) { |