commit 7cab961e2d51286684dc8d12a134194f1baa9b44 parent 0f741ff680d2a0c890d833344e96fe16c07b3531 Author: Christian Grothoff <christian@grothoff.org> Date: Sun, 24 Sep 2023 12:48:52 +0200 -disabmiguate variable Diffstat:
| M | src/exchange/taler-exchange-httpd_batch-deposit.c | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_batch-deposit.c b/src/exchange/taler-exchange-httpd_batch-deposit.c @@ -710,14 +710,14 @@ TEH_handler_batch_deposit (struct TEH_RequestContext *rc, /* generate regular response */ { - MHD_RESULT res; + MHD_RESULT mhd_ret; - res = reply_batch_deposit_success (connection, - &dc); + mhd_ret = reply_batch_deposit_success (connection, + &dc); for (unsigned int j = 0; j<bd->num_cdis; j++) TALER_denom_sig_free (&cdis[j].coin.denom_sig); GNUNET_JSON_parse_free (spec); - return res; + return mhd_ret; } } }