-make picky gcc happy

This commit is contained in:
Christian Grothoff 2022-01-16 18:16:41 +01:00 committed by Gian Demarmels
parent 8d85c8b5b6
commit 3510f953b0
No known key found for this signature in database
GPG Key ID: 030CEDDCCC92D778

View File

@ -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;
}
}
}