From 6bbbd7f65f44256a6aea6cb4fd2432a954d37f9e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 1 Aug 2024 11:59:29 +0200 Subject: [PATCH] Convert an extern variable to static Similar to 720b0eaae9b, fixes new code from bd15b7db489. --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 0d025162738..79190470f71 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -112,7 +112,7 @@ typedef enum SeqType SEQTYPE_BIGINT, } SeqType; -const char *const SeqTypeNames[] = +static const char *const SeqTypeNames[] = { [SEQTYPE_SMALLINT] = "smallint", [SEQTYPE_INTEGER] = "integer",