gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r34850 - gnunet/src/rps


From: gnunet
Subject: [GNUnet-SVN] r34850 - gnunet/src/rps
Date: Thu, 8 Jan 2015 18:46:17 +0100

Author: grothoff
Date: 2015-01-08 18:46:17 +0100 (Thu, 08 Jan 2015)
New Revision: 34850

Modified:
   gnunet/src/rps/gnunet-service-rps.c
Log:
-fix compile error

Modified: gnunet/src/rps/gnunet-service-rps.c
===================================================================
--- gnunet/src/rps/gnunet-service-rps.c 2015-01-08 14:12:56 UTC (rev 34849)
+++ gnunet/src/rps/gnunet-service-rps.c 2015-01-08 17:46:17 UTC (rev 34850)
@@ -789,7 +789,7 @@
   time_next_round = GNUNET_TIME_relative_multiply (time_next_round, 
rand_delay);
   time_next_round = GNUNET_TIME_relative_divide   (time_next_round, 
UINT_MAX/10);
   time_next_round = GNUNET_TIME_relative_add      (time_next_round, 
half_round_interval);
-  } while (GNUNET_TIME_FOREVER_REL != time_next_round);
+  } while (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us != 
time_next_round.rel_value_us);
 
   /* Schedule next round */
   do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_round, 
NULL);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]