gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: -keep using break


From: gnunet
Subject: [gnunet] branch master updated: -keep using break
Date: Sun, 11 Apr 2021 01:40:32 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new a785d16b7 -keep using break
a785d16b7 is described below

commit a785d16b7f49947458782f65f344036a848f4ac7
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Apr 11 01:38:37 2021 +0200

    -keep using break
---
 src/util/time.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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