diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-07 02:52:27 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-07 02:52:27 +0000 |
commit | 5cf81b3c06403f83b1a69c4855fc18e79fc596fd (patch) | |
tree | 39338a1f270dc0159681004fbe43e6845bb98362 /src/bin/pg_dump/pg_backup_archiver.c | |
parent | 06dde51ef0c69b34a07f53c47a5bd5faad66e876 (diff) | |
download | postgresql-5cf81b3c06403f83b1a69c4855fc18e79fc596fd.tar.gz postgresql-5cf81b3c06403f83b1a69c4855fc18e79fc596fd.zip |
Silence compiler warning.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index d8a969b41e0..7f2bfe3261c 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -1199,7 +1199,8 @@ char* ReadStr(ArchiveHandle* AH) return buf; } -int _discoverArchiveFormat(ArchiveHandle* AH) +static int +_discoverArchiveFormat(ArchiveHandle* AH) { FILE *fh; char sig[6]; /* More than enough */ |