diff options
author | Bruce Momjian | 2011-06-09 18:32:50 +0000 |
---|---|---|
committer | Bruce Momjian | 2011-06-09 18:32:50 +0000 |
commit | 6560407c7db2c7e32926a46f5fb52175ac10d9e5 (patch) | |
tree | 9641e538893819410634624a8e0cb86a13d857a6 /src/port/getopt.c | |
parent | adf43b2b36ca3d7f988933990051c74a4bd0d6f8 (diff) |
Pgindent run before 9.1 beta2.
Diffstat (limited to 'src/port/getopt.c')
-rw-r--r-- | src/port/getopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/getopt.c b/src/port/getopt.c index e901bf7db50..eb50cba1ca4 100644 --- a/src/port/getopt.c +++ b/src/port/getopt.c @@ -61,7 +61,7 @@ extern char *optarg; #define BADARG (int)':' #define EMSG "" -int getopt(int nargc, char *const * nargv, const char * ostr); +int getopt(int nargc, char *const * nargv, const char *ostr); /* * getopt @@ -74,7 +74,7 @@ int getopt(int nargc, char *const * nargv, const char * ostr); * returning -1.) */ int -getopt(int nargc, char *const * nargv, const char * ostr) +getopt(int nargc, char *const * nargv, const char *ostr) { static char *place = EMSG; /* option letter processing */ char *oli; /* option letter list index */ |