1
0
forked from aniani/vim

patch 9.1.0288: MS-Windows: compiler warning for size_t to int conversion

Problem:  MS-Windows: compiler warning for size_t to int conversion
          (after  v9.1.0282)
Solution: Use size_t instead of int in highlight_set_termgui_attr
          (Mike Williams)

closes: #14457

Signed-off-by: Mike Williams <mrmrdubya@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Mike Williams
2024-04-09 22:04:54 +02:00
committed by Christian Brabandt
parent 9a91d2b72c
commit 72a156b4ed
2 changed files with 3 additions and 1 deletions

View File

@@ -860,7 +860,7 @@ highlight_reset_all(void)
highlight_set_termgui_attr(int idx, char_u *key, char_u *arg, int init)
{
int attr;
int off;
size_t off;
keyvalue_T target;
keyvalue_T *entry;