From 8843cb2b3b21780b00077cc9aefea0d42859186f Mon Sep 17 00:00:00 2001 From: Foxe Chen Date: Fri, 29 Aug 2025 18:20:23 +0200 Subject: [PATCH] patch 9.1.1711: Missing type cast in clipboard.c Problem: Missing type cast in clipboard.c (Yegappan Lakshmanan, after v9.1.1704) Solution: Add back the type cast (Foxe Chen) closes: #18148 Signed-off-by: Foxe Chen Signed-off-by: Christian Brabandt --- src/clipboard.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/clipboard.c b/src/clipboard.c index df7db00df2..4b2e6874a9 100644 --- a/src/clipboard.c +++ b/src/clipboard.c @@ -2410,7 +2410,7 @@ poll_data: { if (ga_grow(&buf, 8192) == FAIL) break; - start = buf.ga_data + buf.ga_len; + start = (char_u *)buf.ga_data + buf.ga_len; } } diff --git a/src/version.c b/src/version.c index 1a6c7c9cbe..e0543a06a0 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1711, /**/ 1710, /**/