From f10fa3928c94287f20c50c9f00cb7db263af2bbd Mon Sep 17 00:00:00 2001 From: Foxe Chen Date: Tue, 15 Jul 2025 20:02:57 +0200 Subject: [PATCH] patch 9.1.1545: typo in os_unix.c Problem: Typo in os_unix.c Solution: Correct the typo (Foxe Chen) closes: #17761 Signed-off-by: Foxe Chen Signed-off-by: Christian Brabandt --- src/os_unix.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_unix.c b/src/os_unix.c index c27755f952..3e4c6b339a 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -6570,7 +6570,7 @@ RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) if (wayland_may_restore_connection()) { wayland_idx = nfd; - fds[nfd].fd = vwl_display_fd; + fds[nfd].fd = wayland_display_fd; fds[nfd].events = POLLIN; nfd++; } diff --git a/src/version.c b/src/version.c index 62dd30ad91..e4084d5853 100644 --- a/src/version.c +++ b/src/version.c @@ -719,6 +719,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1545, /**/ 1544, /**/ -- 2.47.2