diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-09-24 12:48:52 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-09-24 12:48:52 +0200 |
commit | 7cab961e2d51286684dc8d12a134194f1baa9b44 (patch) | |
tree | a649cc4dc9392c76cbc19195dc4df7c32787244a | |
parent | 0f741ff680d2a0c890d833344e96fe16c07b3531 (diff) |
-disabmiguate variable
-rw-r--r-- | src/exchange/taler-exchange-httpd_batch-deposit.c | 8 |
1 files 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 index a337e35f9..a8bf40d2b 100644 --- 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; } } } |