aboutsummaryrefslogtreecommitdiff
path: root/src/arm/test_exponential_backoff.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-10-27 09:26:58 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-10-27 09:26:58 +0000
commit8a7272d68a0e06dd0b5de7f880246a56b5cab4bf (patch)
tree71a67f0eb4458462d66f70d73949249f6d6f0361 /src/arm/test_exponential_backoff.c
parent6f77f858261ae4c12b3da9a715c76bf529a7509f (diff)
downloadgnunet-8a7272d68a0e06dd0b5de7f880246a56b5cab4bf.tar.gz
gnunet-8a7272d68a0e06dd0b5de7f880246a56b5cab4bf.zip
Refactoring gnunet_time
Diffstat (limited to 'src/arm/test_exponential_backoff.c')
-rw-r--r--src/arm/test_exponential_backoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arm/test_exponential_backoff.c b/src/arm/test_exponential_backoff.c
index e71d96b48..dd32f6a5d 100644
--- a/src/arm/test_exponential_backoff.c
+++ b/src/arm/test_exponential_backoff.c
@@ -361,12 +361,12 @@ kill_task (void *cbData,
361#if LOG_BACKOFF 361#if LOG_BACKOFF
362 fprintf(killLogFilePtr, 362 fprintf(killLogFilePtr,
363 "Waited for: %llu ms\n", 363 "Waited for: %llu ms\n",
364 (unsigned long long) waitedFor.value); 364 (unsigned long long) waitedFor.abs_value);
365#endif 365#endif
366 } 366 }
367 else 367 else
368 { 368 {
369 waitedFor.value = 0; 369 waitedFor.rel_value = 0;
370 } 370 }
371 /* Connect to the doNothing task */ 371 /* Connect to the doNothing task */
372 doNothingConnection = GNUNET_CLIENT_connect (sched, "do-nothing", cfg); 372 doNothingConnection = GNUNET_CLIENT_connect (sched, "do-nothing", cfg);