From 92fd84dc7ef98452f848a62677c61a2b80b5835e Mon Sep 17 00:00:00 2001 From: LRN Date: Thu, 19 Dec 2013 05:59:44 +0000 Subject: Use more-or-equal (some machines are fast enough) --- src/util/test_common_logging_runtime_loglevels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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, /* Delay must be either less than 'lessthan' (log call is skipped) * or more than 'morethan' (log call is not skipped) */ - delay_outside_of_range = ((*delay < delay_lessthan) || (*delay > delay_morethan)); + delay_outside_of_range = ((*delay < delay_lessthan) || (*delay >= delay_morethan)); if (delay_is_a_dummy) delay_outside_of_range = 1; -- cgit v1.2.3