diff options
author | Bruce Momjian | 2003-08-09 01:25:46 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-08-09 01:25:46 +0000 |
commit | 329a1b72700ee11cd900b2c2061c7394965906d0 (patch) | |
tree | 27e88a1d1d0b2c6bc93666e3ca5309346036ec40 | |
parent | cf3cc7576c1ef388534c5994f29a6335e00a5c71 (diff) |
I get the following warning when I compile src/bin/pg_id/pg_id.c:
gcc -pipe -g -Wall -Wmissing-prototypes -Wmissing-declarations
-I../../../src/include -c -o pg_id.o pg_id.c -MMD
pg_id.c: In function `main':
pg_id.c:35: warning: unused variable `optarg'
The attached trivial patch fixes the warning by removing the variable.
Neil Conway
-rw-r--r-- | src/bin/pg_id/pg_id.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/pg_id/pg_id.c b/src/bin/pg_id/pg_id.c index 7a04e636127..b8046e93adb 100644 --- a/src/bin/pg_id/pg_id.c +++ b/src/bin/pg_id/pg_id.c @@ -6,7 +6,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.21 2003/08/04 23:59:39 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.22 2003/08/09 01:25:46 momjian Exp $ */ #include "postgres_fe.h" @@ -32,7 +32,6 @@ main(int argc, char *argv[]) struct passwd *pw; extern int optind; - extern char *optarg; while ((c = getopt(argc, argv, "nru")) != -1) { |