0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

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

@@ -1838,7 +1838,7 @@ compile_lhs_script_var(
int script_var = FALSE;
imported_T *import;
char_u *var_name;
int var_name_len;
size_t var_name_len;
if (lhs->lhs_varlen > 1 && STRNCMP(var_start, "s:", 2) == 0)
script_namespace = TRUE;