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:
committed by
Christian Brabandt
parent
8d0bb6dc9f
commit
084529c03d
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user