mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 13:24:01 -05:00
Fix incorrect format placeholder
This commit is contained in:
parent
45c0c5f70e
commit
7776a23a4b
1 changed files with 1 additions and 1 deletions
|
|
@ -311,7 +311,7 @@ ProcessConfigFileInternal(GucContext context, bool applySettings, int elevel)
|
|||
/* Invalid non-custom variable, so complain */
|
||||
ereport(elevel,
|
||||
(errcode(ERRCODE_UNDEFINED_OBJECT),
|
||||
errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %u",
|
||||
errmsg("unrecognized configuration parameter \"%s\" in file \"%s\" line %d",
|
||||
item->name,
|
||||
item->filename, item->sourceline)));
|
||||
item->errmsg = pstrdup("unrecognized configuration parameter");
|
||||
|
|
|
|||
Loading…
Reference in a new issue