projects
/
oweals
/
gnunet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8635c55
)
use long long
author
Christian Grothoff
<christian@grothoff.org>
Mon, 24 Oct 2011 11:25:03 +0000
(11:25 +0000)
committer
Christian Grothoff
<christian@grothoff.org>
Mon, 24 Oct 2011 11:25:03 +0000
(11:25 +0000)
src/dht/test_dht_multipeer.c
patch
|
blob
|
history
diff --git
a/src/dht/test_dht_multipeer.c
b/src/dht/test_dht_multipeer.c
index c5b4d544e1c400947bc03ecfb5399506d06d64d0..62833a5838a452afa5b2604382befd9bcdfceaf5 100644
(file)
--- 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)
#if VERBOSE
fprintf (stderr,
"Issuing %llu GETs\n",
-
num_peers * num_peers
);
+
(unsigned long long) (num_peers * num_peers)
);
#endif
for (i = 0; i < num_peers; i++)
for (j = 0; j < num_peers; j++)
@@
-756,7
+756,7
@@
run_dht_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
"from setup puts/gets");
fprintf (stderr,
"Issuing %llu PUTs (one per peer)\n",
-
num_peers
);
+
(unsigned long long) (num_peers * num_peers)
);
for (i = 0; i < num_peers * num_peers; i++)
{
test_put = GNUNET_malloc (sizeof (struct TestPutContext));