diff options
-rw-r--r-- | src/util/test_common_logging_runtime_loglevels.c | 2 |
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, /* 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; |