aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-02-05 19:25:26 +0000
committerChristian Grothoff <christian@grothoff.org>2013-02-05 19:25:26 +0000
commitc9f2bc5f76b5de8057cd5bdc7fc5321e3ae16abe (patch)
treea04c927be036fb1b56f5a2bb1870212146a60ea0 /src/util/common_logging.c
parent5cf2dfd1632622fbbc95f0a89dee6a9a4571d979 (diff)
downloadgnunet-c9f2bc5f76b5de8057cd5bdc7fc5321e3ae16abe.tar.gz
gnunet-c9f2bc5f76b5de8057cd5bdc7fc5321e3ae16abe.zip
-do not fail hard on log skip checks
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r--src/util/common_logging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c
index 23749dd99..000c33880 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -842,7 +842,7 @@ GNUNET_log_skip (int n, int check_reset)
842 ok = (0 == skip_log); 842 ok = (0 == skip_log);
843 skip_log = 0; 843 skip_log = 0;
844 if (check_reset) 844 if (check_reset)
845 GNUNET_assert (ok); 845 GNUNET_break (ok);
846 } 846 }
847 else 847 else
848 { 848 {