1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

Convert an extern variable to static

Similar to 720b0eaae9b, fixes new code from bd15b7db489.
This commit is contained in:
Peter Eisentraut 2024-08-01 11:59:29 +02:00
parent c671e142bf
commit 6bbbd7f65f

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