mirror of https://github.com/citusdata/citus.git
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
parent
53882f4723
commit
57a0228c52
|
@ -531,7 +531,7 @@ CreateRequiredDirectories(void)
|
|||
const char *subdirs[] = {
|
||||
"pg_foreign_file",
|
||||
"pg_foreign_file/cached",
|
||||
"base/" PG_JOB_CACHE_DIR
|
||||
("base/" PG_JOB_CACHE_DIR)
|
||||
};
|
||||
|
||||
for (int dirNo = 0; dirNo < lengthof(subdirs); dirNo++)
|
||||
|
|
Loading…
Reference in New Issue