Convert an extern variable to static
authorPeter Eisentraut <[email protected]>
Thu, 1 Aug 2024 09:59:29 +0000 (11:59 +0200)
committerPeter Eisentraut <[email protected]>
Thu, 1 Aug 2024 10:43:26 +0000 (12:43 +0200)
Similar to 720b0eaae9b, fixes new code from bd15b7db489.

src/bin/pg_dump/pg_dump.c

index 0d0251627384ba9143b9e09735cd83850228ec49..79190470f7139406ee401dd80b2b06692766150c 100644 (file)
@@ -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",