From d3a6cc915ab802da7f0fbdf34c00ecb64d87cfdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Sat, 3 Jun 2023 05:35:42 -0400 Subject: [PATCH] Fix typo in line 666 --- src/conio/x_events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conio/x_events.c b/src/conio/x_events.c index 7b4a3a81eb..a9b380c928 100644 --- a/src/conio/x_events.c +++ b/src/conio/x_events.c @@ -663,7 +663,7 @@ static void resize_window() x_cvstat.winheight = height; x_cvstat.scaling = bitmap_double_mult_inside(width, height); pthread_mutex_unlock(&vstatlock); - x11.XResizeWindow(dpy, win, width, height)); + x11.XResizeWindow(dpy, win, width, height); resize_xim(); return; -- GitLab