From 7d94c017b94577548a0656b2aef7ce8be18fbc1b Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 9 Nov 2020 10:36:49 +0100 Subject: [PATCH] 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 Backpatch-through: 13 Discussion: https://postgr.es/m/3321cbcea76d4d2c8320a05c19b9304a@G08CNEXMBPEKD05.g08.fujitsu.local --- src/fe_utils/cancel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe_utils/cancel.c b/src/fe_utils/cancel.c index 7004201748..0a385647df 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); } }