mirror of
https://github.com/zoriya/vim.git
synced 2025-12-21 14:45:17 +00:00
updated for version 7.3.413
Problem: Build warnings on MS-Windows. Solution: Add type casts. (Mike Williams)
This commit is contained in:
@@ -5252,7 +5252,7 @@ find_term_bykeys(src)
|
||||
char_u *src;
|
||||
{
|
||||
int i;
|
||||
int slen = STRLEN(src);
|
||||
int slen = (int)STRLEN(src);
|
||||
|
||||
for (i = 0; i < tc_len; ++i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user