aboutsummaryrefslogtreecommitdiff
path: root/src/dht/test_dht_multipeer.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-24 11:25:03 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-24 11:25:03 +0000
commit35899b8771d61bcfc4cb70077efd9a748e272f07 (patch)
tree702ddd02651438766499ad6f0a450c4d93ac9ace /src/dht/test_dht_multipeer.c
parent8635c55d63e60ae1c834b82d0806e3ec8ea4d6e5 (diff)
downloadgnunet-35899b8771d61bcfc4cb70077efd9a748e272f07.tar.gz
gnunet-35899b8771d61bcfc4cb70077efd9a748e272f07.zip
use long long
Diffstat (limited to 'src/dht/test_dht_multipeer.c')
-rw-r--r--src/dht/test_dht_multipeer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dht/test_dht_multipeer.c b/src/dht/test_dht_multipeer.c
index c5b4d544e..62833a583 100644
--- a/src/dht/test_dht_multipeer.c
+++ b/src/dht/test_dht_multipeer.c
@@ -664,7 +664,7 @@ start_gets (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
664#if VERBOSE 664#if VERBOSE
665 fprintf (stderr, 665 fprintf (stderr,
666 "Issuing %llu GETs\n", 666 "Issuing %llu GETs\n",
667 num_peers * num_peers); 667 (unsigned long long) (num_peers * num_peers));
668#endif 668#endif
669 for (i = 0; i < num_peers; i++) 669 for (i = 0; i < num_peers; i++)
670 for (j = 0; j < num_peers; j++) 670 for (j = 0; j < num_peers; j++)
@@ -756,7 +756,7 @@ run_dht_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
756 "from setup puts/gets"); 756 "from setup puts/gets");
757 fprintf (stderr, 757 fprintf (stderr,
758 "Issuing %llu PUTs (one per peer)\n", 758 "Issuing %llu PUTs (one per peer)\n",
759 num_peers); 759 (unsigned long long) (num_peers * num_peers));
760 for (i = 0; i < num_peers * num_peers; i++) 760 for (i = 0; i < num_peers * num_peers; i++)
761 { 761 {
762 test_put = GNUNET_malloc (sizeof (struct TestPutContext)); 762 test_put = GNUNET_malloc (sizeof (struct TestPutContext));