gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] 30/37: -make picky gcc happy


From: gnunet
Subject: [taler-exchange] 30/37: -make picky gcc happy
Date: Fri, 04 Feb 2022 16:54:00 +0100

This is an automated email from the git hooks/post-receive script.

gian-demarmels pushed a commit to branch master
in repository exchange.

commit 3510f953b02e3ba0f42e1539c8151e73dfe2898b
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Jan 16 18:16:41 2022 +0100

    -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 204c7235..e8eca88c 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;
+    }
   }
 }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]