summaryrefslogtreecommitdiff
path: root/src/util/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/time.c')
-rw-r--r--src/util/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/time.c b/src/util/time.c
index fcf18c893..456ee660b 100644
--- a/src/util/time.c
+++ b/src/util/time.c
@@ -284,7 +284,7 @@ GNUNET_TIME_absolute_add (struct GNUNET_TIME_Absolute start,
return GNUNET_TIME_UNIT_FOREVER_ABS;
if (start.abs_value_us + duration.rel_value_us < start.abs_value_us)
{
- GNUNET_assert (0);
+ GNUNET_break (0);
return GNUNET_TIME_UNIT_FOREVER_ABS;
}
ret.abs_value_us = start.abs_value_us + duration.rel_value_us;