gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] 03/03: Fix signedness to keep compiler happy


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 03/03: Fix signedness to keep compiler happy
Date: Thu, 06 Sep 2018 03:21:12 +0200

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

julius-buenger pushed a commit to branch master
in repository gnunet.

commit 03962e00362edd9b159b8b5af45e57db7a0059b9
Author: Julius Bünger <address@hidden>
AuthorDate: Thu Sep 6 03:20:07 2018 +0200

    Fix signedness to keep compiler happy
---
 src/rps/rps-test_util.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rps/rps-test_util.c b/src/rps/rps-test_util.c
index 1a2db1427..ef39638bf 100644
--- a/src/rps/rps-test_util.c
+++ b/src/rps/rps-test_util.c
@@ -65,7 +65,7 @@ to_file_ (const char *file_name, char *line)
   char *output_buffer_p;
   //size_t size;
   int size;
-  size_t size2;
+  int size2;
 
 
   if (NULL == (f = GNUNET_DISK_file_open (file_name,
@@ -458,7 +458,7 @@ const char *
 store_prefix_file_name (const struct GNUNET_PeerIdentity *peer,
     const char *prefix)
 {
-  unsigned int len_file_name;
+  int len_file_name;
   int out_size;
   char *file_name;
   const char *pid_long;

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



reply via email to

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