commit 280aecd3d6e4a87373af2e36c86389799cffb5bf
parent 8f0a7aec98e6a213f96a05525abe8ec1af0228a9
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 30 Nov 2017 03:02:52 +0100
add critical missing comma
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_tip-authorize.c b/src/backend/taler-merchant-httpd_tip-authorize.c
@@ -200,7 +200,7 @@ MH_handler_tip_authorize (struct TMH_RequestHandler *rh,
TALER_EC_TIP_AUTHORIZE_INSUFFICIENT_FUNDS,
"Insufficient funds for tip");
}
- json_t *tip_token = json_pack ("{s:o, s:o, s:s, s:s}"
+ json_t *tip_token = json_pack ("{s:o, s:o, s:s, s:s}",
"tip_id", GNUNET_JSON_from_data_auto (&tip_id),
"expiration", GNUNET_JSON_from_time_abs (expiration),
"exchange_url", mi->tip_exchange,