Fix string-concatenation warning on Clang 13 (#5425)

Clang 13 complains about a suspicious string concatenation. It thinks we
might have missed a comma. This adds parentheses to make it clear that
concatenation is indeed what we meant.
pull/5403/head
Jelte Fennema 2021-11-01 11:55:43 +01:00 committed by GitHub
parent 53882f4723
commit 57a0228c52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ CreateRequiredDirectories(void)
const char *subdirs[] = { const char *subdirs[] = {
"pg_foreign_file", "pg_foreign_file",
"pg_foreign_file/cached", "pg_foreign_file/cached",
"base/" PG_JOB_CACHE_DIR ("base/" PG_JOB_CACHE_DIR)
}; };
for (int dirNo = 0; dirNo < lengthof(subdirs); dirNo++) for (int dirNo = 0; dirNo < lengthof(subdirs); dirNo++)