diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-12-23 21:50:38 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-12-23 21:50:38 +0000 |
commit | 358d032f9855cfa95a5de174c0bf052097e649f0 (patch) | |
tree | e9ad1c81b925559a528887b64a9f9476aa81da0d /src | |
parent | 2fb67fa469d036a789cacde02e6d3277a0273e45 (diff) | |
download | postgresql-358d032f9855cfa95a5de174c0bf052097e649f0.tar.gz postgresql-358d032f9855cfa95a5de174c0bf052097e649f0.zip |
Fix compile warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/initdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 0efae260d7e..cd2df3acb23 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -43,7 +43,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.17 2003/12/17 18:44:08 petere Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.18 2003/12/23 21:50:38 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2026,7 +2026,7 @@ usage(const char *progname) /* * Initialized NLS if enabled. */ -void +static void init_nls(void) { #ifdef ENABLE_NLS |