diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/exchange_api_withdraw.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/lib/exchange_api_withdraw.c b/src/lib/exchange_api_withdraw.c index 204c72359..e8eca88cc 100644 --- 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; + } } } |