From 55463952f27da869cee860186dbddfe53443a619 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 9 Feb 2022 19:31:45 +0200 Subject: [PATCH] ; * src/xterm.c (x_display_set_last_user_time): Fix compilation error. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 1a9eea42cf0..13f5800bb70 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -2225,7 +2225,7 @@ x_display_set_last_user_time (struct x_display_info *dpyinfo, Time time) #endif #ifdef ENABLE_CHECKING - eassert (t <= X_ULONG_MAX); + eassert (time <= X_ULONG_MAX); #endif dpyinfo->last_user_time = time; -- 2.39.5