1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-16 17:07:43 +03:00

Silence compiler warning.

This commit is contained in:
Tom Lane
2000-12-07 02:52:27 +00:00
parent 06dde51ef0
commit 5cf81b3c06
3 changed files with 5 additions and 5 deletions

View File

@@ -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 */