Skip to content

Commit 7776a23

Browse files
committed
Fix incorrect format placeholder
1 parent 45c0c5f commit 7776a23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/misc/guc-file.l

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ ProcessConfigFileInternal(GucContext context, bool applySettings, int elevel)
311311
/* Invalid non-custom variable, so complain */
312312
ereport(elevel,
313313
(errcode(ERRCODE_UNDEFINED_OBJECT),
314-
errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %u",
314+
errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %d",
315315
item->name,
316316
item->filename, item->sourceline)));
317317
item->errmsg = pstrdup("unrecognized configuration parameter");

0 commit comments

Comments
 (0)