diff --git a/src/timer.c b/src/timer.c index bc182393..9d23d790 100644 --- a/src/timer.c +++ b/src/timer.c @@ -93,7 +93,7 @@ libinput_timer_set_flags(struct libinput_timer *timer, if (expire < now) { if ((flags & TIMER_FLAG_ALLOW_NEGATIVE) == 0) log_bug_client(timer->libinput, - "timer %s: offset negative (-%dms)\n", + "timer %s: scheduled expiry is in the past (-%dms), your system is too slow\n", timer->timer_name, us2ms(now - expire)); } else if ((expire - now) > ms2us(5000)) { diff --git a/test/test-misc.c b/test/test-misc.c index 9aa3c9e6..b131cde9 100644 --- a/test/test-misc.c +++ b/test/test-misc.c @@ -660,7 +660,7 @@ static void timer_offset_warning(struct libinput *libinput, int *warning_triggered = (int*)libinput_get_user_data(libinput); if (priority == LIBINPUT_LOG_PRIORITY_ERROR && - strstr(format, "offset negative")) + strstr(format, "scheduled expiry is in the past")) (*warning_triggered)++; }