diff options
author | Neil Conway <neilc@samurai.com> | 2004-01-31 21:18:00 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-01-31 21:18:00 +0000 |
commit | 25b8b69eec0cc496e26cba202f9c171d17cd6906 (patch) | |
tree | 973a3d6ed0e6e8a25717beda8f931ef450189b31 | |
parent | 7b2cf1713de6c4fcadb9b9c98cf5999a26d448ad (diff) |
Remove a superfluous semi-colon.
-rw-r--r-- | src/bin/initdb/initdb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index b0f5c459c6e..401427a0ba5 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.19 2004/01/26 22:35:32 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.20 2004/01/31 21:18:00 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -450,7 +450,6 @@ writefile(char *path, char **lines) FILE *out_file; char **line; - ; if ((out_file = fopen(path, PG_BINARY_W)) == NULL) { fprintf(stderr, _("%s: could not open file \"%s\" for writing: %s\n"), |