From 03962e00362edd9b159b8b5af45e57db7a0059b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Julius=20B=C3=BCnger?= Date: Thu, 6 Sep 2018 03:20:07 +0200 Subject: [PATCH] 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; -- 2.25.1