1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Add some const decorations to array constants

Author: Mark G <markg735@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/CAEeOP_YFVeFjq4zDZLDQbLSRFxBiTpwBQHxCNgGd%2Bp5VztTXyQ%40mail.gmail.com
This commit is contained in:
Peter Eisentraut
2019-09-17 22:03:00 +02:00
parent d5b90cd648
commit 48770492c3
2 changed files with 3 additions and 3 deletions

View File

@ -131,7 +131,7 @@ static bool noverify_checksums = false;
* Note: this list should be kept in sync with the filter lists in pg_rewind's
* filemap.c.
*/
static const char *excludeDirContents[] =
static const char *const excludeDirContents[] =
{
/*
* Skip temporary statistics files. PG_STAT_TMP_DIR must be skipped even
@ -172,7 +172,7 @@ static const char *excludeDirContents[] =
/*
* List of files excluded from backups.
*/
static const char *excludeFiles[] =
static const char *const excludeFiles[] =
{
/* Skip auto conf temporary file. */
PG_AUTOCONF_FILENAME ".tmp",