commit a34bda38e2e4e945140f17a5ffb73d3e7228e48b
parent ae97953197758c4bd49238de34280bfe8370192a
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 13 Dec 2024 20:06:57 +0100
fix missing break
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_withdraw.c b/src/exchange/taler-exchange-httpd_withdraw.c
@@ -1585,11 +1585,10 @@ check_keys (struct WithdrawContext *wc)
MHD_HTTP_INTERNAL_SERVER_ERROR,
TALER_EC_EXCHANGE_GENERIC_KEYS_MISSING,
typ2str (wc)));
+ break;
default:
GNUNET_break (0);
}
-
- return;
}