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:
committed by
Christian Brabandt
parent
8d0bb6dc9f
commit
084529c03d
@@ -675,7 +675,7 @@ repeat:
|
||||
if (s != NULL)
|
||||
{
|
||||
*fnamep = s;
|
||||
*fnamelen = slen;
|
||||
*fnamelen = (int)slen;
|
||||
vim_free(*bufp);
|
||||
*bufp = s;
|
||||
didit = TRUE;
|
||||
|
Reference in New Issue
Block a user