From: Julius Bünger Date: Thu, 6 Sep 2018 01:20:07 +0000 (+0200) Subject: Fix signedness to keep compiler happy X-Git-Tag: v0.11.0~260 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=03962e00362edd9b159b8b5af45e57db7a0059b9;p=oweals%2Fgnunet.git Fix signedness to keep compiler happy --- 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;