summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-05-08 07:18:17 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-05-08 07:18:17 +0200
commitdf31a863cc36af8cdf03a88b1419ccd39ef637d5 (patch)
tree78eceeddb7459f314ecb7b17159b31c5b19eaba4
parent806ec0fa26db9d8cce6342210bdf875715df42c6 (diff)
downloadmerchant-df31a863cc36af8cdf03a88b1419ccd39ef637d5.tar.gz
merchant-df31a863cc36af8cdf03a88b1419ccd39ef637d5.tar.bz2
merchant-df31a863cc36af8cdf03a88b1419ccd39ef637d5.zip
fix jansson format string
-rw-r--r--src/backend/taler-merchant-httpd_pay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd_pay.c b/src/backend/taler-merchant-httpd_pay.c
index ec52ff26..57ff4023 100644
--- a/src/backend/taler-merchant-httpd_pay.c
+++ b/src/backend/taler-merchant-httpd_pay.c
@@ -935,7 +935,7 @@ deposit_cb (void *cls,
/* We can't do anything meaningful here, the exchange did something wrong */
resume_pay_with_response (pc,
MHD_HTTP_SERVICE_UNAVAILABLE,
- TMH_RESPONSE_make_json_pack ("{s:s, s:I, s:I, s:s}",
+ TMH_RESPONSE_make_json_pack ("{s:s, s:I, s:I, s:I, s:s}",
"error", "exchange failed",
"code", (json_int_t) TALER_EC_PAY_EXCHANGE_FAILED,
"exchange-code", (json_int_t) ec,