aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_communicator_basic.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-12-25 13:46:36 +0100
committerChristian Grothoff <christian@grothoff.org>2019-12-25 13:46:36 +0100
commit6e489113f724f19d683963be0382d61291a5bef9 (patch)
tree435098422d38a231867f3947936e0262e48096c7 /src/transport/test_communicator_basic.c
parente8879b468c885bc0312d279368a9f2b85f741d41 (diff)
downloadgnunet-6e489113f724f19d683963be0382d61291a5bef9.tar.gz
gnunet-6e489113f724f19d683963be0382d61291a5bef9.zip
use unsigned
Diffstat (limited to 'src/transport/test_communicator_basic.c')
-rw-r--r--src/transport/test_communicator_basic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/test_communicator_basic.c b/src/transport/test_communicator_basic.c
index a17767d07..0bca5f695 100644
--- a/src/transport/test_communicator_basic.c
+++ b/src/transport/test_communicator_basic.c
@@ -484,8 +484,8 @@ main (int argc,
484 struct GNUNET_CRYPTO_EddsaPrivateKey *private_key; 484 struct GNUNET_CRYPTO_EddsaPrivateKey *private_key;
485 char *communicator_name; 485 char *communicator_name;
486 char *cfg_peer; 486 char *cfg_peer;
487 ret = 1;
488 487
488 ret = 1;
489 communicator_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]); 489 communicator_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
490 GNUNET_asprintf (&communicator_binary, "gnunet-communicator-%s", 490 GNUNET_asprintf (&communicator_binary, "gnunet-communicator-%s",
491 communicator_name); 491 communicator_name);
@@ -497,7 +497,7 @@ main (int argc,
497 GNUNET_break (0); 497 GNUNET_break (0);
498 return 2; 498 return 2;
499 } 499 }
500 for (int i = 0; i < NUM_PEERS; i++) 500 for (unsigned int i = 0; i < NUM_PEERS; i++)
501 { 501 {
502 GNUNET_asprintf ((&cfg_peer), 502 GNUNET_asprintf ((&cfg_peer),
503 "test_communicator_%s_peer%u.conf", 503 "test_communicator_%s_peer%u.conf",