aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps-test_util.c
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2018-09-06 03:20:07 +0200
committerJulius Bünger <buenger@mytum.de>2018-09-06 03:20:55 +0200
commit03962e00362edd9b159b8b5af45e57db7a0059b9 (patch)
tree3ce5ad4e5615930f5296fda7ad5e910ef7acabfa /src/rps/rps-test_util.c
parentc78aa8d4b4ec473694973aae21928be5ecc2b903 (diff)
downloadgnunet-03962e00362edd9b159b8b5af45e57db7a0059b9.tar.gz
gnunet-03962e00362edd9b159b8b5af45e57db7a0059b9.zip
Fix signedness to keep compiler happy
Diffstat (limited to 'src/rps/rps-test_util.c')
-rw-r--r--src/rps/rps-test_util.c4
1 files 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)
65 char *output_buffer_p; 65 char *output_buffer_p;
66 //size_t size; 66 //size_t size;
67 int size; 67 int size;
68 size_t size2; 68 int size2;
69 69
70 70
71 if (NULL == (f = GNUNET_DISK_file_open (file_name, 71 if (NULL == (f = GNUNET_DISK_file_open (file_name,
@@ -458,7 +458,7 @@ const char *
458store_prefix_file_name (const struct GNUNET_PeerIdentity *peer, 458store_prefix_file_name (const struct GNUNET_PeerIdentity *peer,
459 const char *prefix) 459 const char *prefix)
460{ 460{
461 unsigned int len_file_name; 461 int len_file_name;
462 int out_size; 462 int out_size;
463 char *file_name; 463 char *file_name;
464 const char *pid_long; 464 const char *pid_long;