patch 9.1.0957: MS-Windows: conversion warnings

Problem:  MS-Windows: conversion warnings
Solution: add explicit type casts (Yegappan Lakshmanan)

closes: #16288

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yegappan Lakshmanan
2024-12-24 09:50:01 +01:00
committed by Christian Brabandt
parent 8d0bb6dc9f
commit 084529c03d
9 changed files with 19 additions and 17 deletions

View File

@ -1142,7 +1142,7 @@ barline_parse(vir_T *virp, char_u *text, garray_T *values)
// freed later, also need to free "buf" later
value->bv_tofree = buf;
s = sconv;
len = STRLEN(s);
len = (int)STRLEN(s);
converted = TRUE;
}
}