aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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