0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -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

@@ -675,7 +675,7 @@ repeat:
if (s != NULL)
{
*fnamep = s;
*fnamelen = slen;
*fnamelen = (int)slen;
vim_free(*bufp);
*bufp = s;
didit = TRUE;