0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.3.037

Problem:    Compiler warnings for loss of data. (Mike Williams)
Solution:   Add type casts.
This commit is contained in:
Bram Moolenaar
2010-10-27 12:18:00 +02:00
parent 786989ba37
commit 6b5ef067a5
4 changed files with 9 additions and 6 deletions

View File

@@ -3922,7 +3922,7 @@ showmap(mp, local)
if (mapchars != NULL)
{
msg_puts(mapchars);
len = STRLEN(mapchars);
len = (int)STRLEN(mapchars);
vim_free(mapchars);
}