mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4223: long/int compiler warnings; function arguments swapped
Problem: Long/int compiler warnings; function arguments swapped. Solution: Add type casts. Swap arguments. (Ken Takata, closes #9632)
This commit is contained in:
@@ -4089,7 +4089,7 @@ eval_method(
|
||||
else
|
||||
{
|
||||
name = deref;
|
||||
len = STRLEN(name);
|
||||
len = (long)STRLEN(name);
|
||||
}
|
||||
*paren = '(';
|
||||
}
|
||||
|
Reference in New Issue
Block a user