aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-12-19 05:59:44 +0000
committerLRN <lrn1986@gmail.com>2013-12-19 05:59:44 +0000
commit92fd84dc7ef98452f848a62677c61a2b80b5835e (patch)
tree8e61c78c25c28934915f504d225b08c949a254fb
parentd3c4c634d7f09a05865a7d1a3050c8493f02c712 (diff)
downloadgnunet-92fd84dc7ef98452f848a62677c61a2b80b5835e.tar.gz
gnunet-92fd84dc7ef98452f848a62677c61a2b80b5835e.zip
Use more-or-equal (some machines are fast enough)
-rw-r--r--src/util/test_common_logging_runtime_loglevels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/test_common_logging_runtime_loglevels.c b/src/util/test_common_logging_runtime_loglevels.c
index 676cbe14f..3361ca1b1 100644
--- a/src/util/test_common_logging_runtime_loglevels.c
+++ b/src/util/test_common_logging_runtime_loglevels.c
@@ -175,7 +175,7 @@ read_output_line (int phase_from1, int phase_to1, int phase_from2,
175 /* Delay must be either less than 'lessthan' (log call is skipped) 175 /* Delay must be either less than 'lessthan' (log call is skipped)
176 * or more than 'morethan' (log call is not skipped) 176 * or more than 'morethan' (log call is not skipped)
177 */ 177 */
178 delay_outside_of_range = ((*delay < delay_lessthan) || (*delay > delay_morethan)); 178 delay_outside_of_range = ((*delay < delay_lessthan) || (*delay >= delay_morethan));
179 if (delay_is_a_dummy) 179 if (delay_is_a_dummy)
180 delay_outside_of_range = 1; 180 delay_outside_of_range = 1;
181 181