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:
@@ -3922,7 +3922,7 @@ showmap(mp, local)
|
||||
if (mapchars != NULL)
|
||||
{
|
||||
msg_puts(mapchars);
|
||||
len = STRLEN(mapchars);
|
||||
len = (int)STRLEN(mapchars);
|
||||
vim_free(mapchars);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user