diff options
author | Bruce Momjian | 2012-11-30 19:49:55 +0000 |
---|---|---|
committer | Bruce Momjian | 2012-11-30 19:49:55 +0000 |
commit | bd9c8e741b5724e31b2a3d8da9f0218f7b3b44e5 (patch) | |
tree | 5a322322aab3af9c3847155431e7bb0d9400e911 /src/bin/pg_basebackup/pg_receivexlog.c | |
parent | da63fec7dbb0c459aa0f8753a3d30a3a6cd3d73f (diff) |
Move long_options structures to the top of main() functions, for
consistency.
Per suggestion from Tom.
Diffstat (limited to 'src/bin/pg_basebackup/pg_receivexlog.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_receivexlog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c index 843fc69294d..54524834f75 100644 --- a/src/bin/pg_basebackup/pg_receivexlog.c +++ b/src/bin/pg_basebackup/pg_receivexlog.c @@ -315,6 +315,7 @@ main(int argc, char **argv) {"verbose", no_argument, NULL, 'v'}, {NULL, 0, NULL, 0} }; + int c; int option_index; |