summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2020-11-09 09:36:49 +0000
committerMagnus Hagander2020-11-09 09:38:22 +0000
commit7e84dd212040529de1811c7c97c996cc4e392015 (patch)
tree28b87ef209c4f3931363ce39dbb4449af4e5ed51
parentef60de67ebde6dfd1ea09b4d08166736bf05698c (diff)
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 <[email protected]> Backpatch-through: 13 Discussion: https://postgr.es/m/3321cbcea76d4d2c8320a05c19b9304a@G08CNEXMBPEKD05.g08.fujitsu.local
-rw-r--r--src/fe_utils/cancel.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}