From: Peter Eisentraut Date: Thu, 1 Aug 2024 09:59:29 +0000 (+0200) Subject: Convert an extern variable to static X-Git-Tag: REL_18_BETA1~2228 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=6bbbd7f65f44256a6aea6cb4fd2432a954d37f9e;p=postgresql.git Convert an extern variable to static Similar to 720b0eaae9b, fixes new code from bd15b7db489. --- 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",