gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: Avoiding comparison between unsi


From: gnunet
Subject: [taler-exchange] branch master updated: Avoiding comparison between unsigned int and int.
Date: Fri, 17 Jan 2020 14:34:36 +0100

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

marcello pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new e369dcfc Avoiding comparison between unsigned int and int.
e369dcfc is described below

commit e369dcfc25f1a25c59e0e6dd816397855a45d5bd
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Jan 17 14:33:09 2020 +0100

    Avoiding comparison between unsigned int and int.
---
 src/lib/exchange_api_wire.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/exchange_api_wire.c b/src/lib/exchange_api_wire.c
index 4f93618c..9058efd6 100644
--- a/src/lib/exchange_api_wire.c
+++ b/src/lib/exchange_api_wire.c
@@ -123,7 +123,7 @@ parse_fees (json_t *fees)
 
   json_object_foreach (fees, key, fee_array) {
     struct FeeMap *fe = GNUNET_new (struct FeeMap);
-    int len;
+    unsigned int len;
     unsigned int idx;
     json_t *fee;
 
@@ -222,7 +222,7 @@ handle_wire_finished (void *cls,
     {
       json_t *accounts;
       json_t *fees;
-      int num_accounts;
+      unsigned int num_accounts;
       struct FeeMap *fm;
       const struct TALER_EXCHANGE_Keys *key_state;
       struct GNUNET_JSON_Specification spec[] = {

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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