exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 3510f953b02e3ba0f42e1539c8151e73dfe2898b
parent 8d85c8b5b6c514ce093d856a2e4b931b4108ece5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 16 Jan 2022 18:16:41 +0100

-make picky gcc happy

Diffstat:
Msrc/lib/exchange_api_withdraw.c | 18++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/lib/exchange_api_withdraw.c b/src/lib/exchange_api_withdraw.c @@ -206,14 +206,16 @@ withdraw_cs_stage_two_callback (void *cls, wh); break; default: - // the CSR request went wrong -> serve response to the callback - struct TALER_EXCHANGE_WithdrawResponse wr = { - .hr = csrr->hr - }; - wh->cb (wh->cb_cls, - &wr); - TALER_EXCHANGE_withdraw_cancel (wh); - break; + { + // the CSR request went wrong -> serve response to the callback + struct TALER_EXCHANGE_WithdrawResponse wr = { + .hr = csrr->hr + }; + wh->cb (wh->cb_cls, + &wr); + TALER_EXCHANGE_withdraw_cancel (wh); + break; + } } }