Skip to content

Commit 8843cb2

Browse files
64-bitmanchrisbra
authored andcommitted
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 <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent 5d8098b commit 8843cb2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/clipboard.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2410,7 +2410,7 @@ clip_wl_receive_data(Clipboard_T *cbd, const char *mime_type, int fd)
24102410
{
24112411
if (ga_grow(&buf, 8192) == FAIL)
24122412
break;
2413-
start = buf.ga_data + buf.ga_len;
2413+
start = (char_u *)buf.ga_data + buf.ga_len;
24142414
}
24152415
}
24162416

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,8 @@ static char *(features[]) =
724724

725725
static int included_patches[] =
726726
{ /* Add new patch number below this line */
727+
/**/
728+
1711,
727729
/**/
728730
1710,
729731
/**/

0 commit comments

Comments
 (0)