summaryrefslogtreecommitdiff
path: root/src/exchange-tools/taler-wire.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-03-03 00:35:21 +0100
committerChristian Grothoff <christian@grothoff.org>2019-03-03 00:35:21 +0100
commitc3b9ebc1effea652e3cdfc93fb6ed5b1cf83826a (patch)
treefb02e2b2a78ad50cc5e1864484e80620faf1fcae /src/exchange-tools/taler-wire.c
parent4dea098f54757f618abcfdfd27514bdab281997a (diff)
downloadexchange-c3b9ebc1effea652e3cdfc93fb6ed5b1cf83826a.tar.gz
exchange-c3b9ebc1effea652e3cdfc93fb6ed5b1cf83826a.tar.bz2
exchange-c3b9ebc1effea652e3cdfc93fb6ed5b1cf83826a.zip
fix format string issue in taler-wire, complete work on #5536 revocation file issue (shift location of revocation file and change content to include denom hash)
Diffstat (limited to 'src/exchange-tools/taler-wire.c')
-rw-r--r--src/exchange-tools/taler-wire.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exchange-tools/taler-wire.c b/src/exchange-tools/taler-wire.c
index 928402a61..ee7eeb8cc 100644
--- a/src/exchange-tools/taler-wire.c
+++ b/src/exchange-tools/taler-wire.c
@@ -150,7 +150,8 @@ confirmation_cb (void *cls,
"The wire transfer didn't execute correctly.\n");
GNUNET_assert (NULL != emsg);
fprintf (stderr,
- emsg);
+ "%s",
+ emsg);
GNUNET_SCHEDULER_shutdown ();
return;
}