Convert an extern variable to static

Similar to 720b0eaae9, fixes new code from bd15b7db48.
This commit is contained in:
Peter Eisentraut 2024-08-01 11:59:29 +02:00
parent c671e142bf
commit 6bbbd7f65f
1 changed files with 1 additions and 1 deletions

View 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",