From a02a5fc93e7e4a7a39b529c5d97d1f37262770d3 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Tue, 15 Apr 2025 15:18:00 +0200 Subject: [PATCH] Declare fp static It's only used in pg_filedump.c. --- pg_filedump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg_filedump.c b/pg_filedump.c index 49e39a8..24646bf 100644 --- a/pg_filedump.c +++ b/pg_filedump.c @@ -60,7 +60,7 @@ unsigned int specialType = SPEC_SECT_NONE; static bool verbose = false; /* File to dump or format */ -FILE *fp = NULL; +static FILE *fp = NULL; /* File name for display */ char *fileName = NULL; -- 2.39.5