diff options
author | Magnus Hagander <magnus@hagander.net> | 2020-11-09 10:36:49 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2020-11-09 10:38:43 +0100 |
commit | 7d94c017b94577548a0656b2aef7ce8be18fbc1b (patch) | |
tree | 08ecedb2fa5c3706238fa2ee62f82712f27accea | |
parent | 213774a45b9259ea797cd6b5e1e9a74bd7d12d28 (diff) | |
download | postgresql-7d94c017b94577548a0656b2aef7ce8be18fbc1b.tar.gz postgresql-7d94c017b94577548a0656b2aef7ce8be18fbc1b.zip |
Remove incorrect %s in string
Appears to have been a copy/paste error in the original commit that
moved the messages to fe_utils/.
Author: Tang, Haiying <tanghy.fnst@cn.fujitsu.com>
Backpatch-through: 13
Discussion: https://postgr.es/m/3321cbcea76d4d2c8320a05c19b9304a@G08CNEXMBPEKD05.g08.fujitsu.local
-rw-r--r-- | src/fe_utils/cancel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe_utils/cancel.c b/src/fe_utils/cancel.c index 70042017481..0a385647df8 100644 --- a/src/fe_utils/cancel.c +++ b/src/fe_utils/cancel.c @@ -207,7 +207,7 @@ consoleHandler(DWORD dwCtrlType) } else { - write_stderr(_("Could not send cancel request: %s")); + write_stderr(_("Could not send cancel request: ")); write_stderr(errbuf); } } |