From 3510f953b02e3ba0f42e1539c8151e73dfe2898b Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 16 Jan 2022 18:16:41 +0100 Subject: [PATCH] -make picky gcc happy --- src/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 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; + } } }