mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 7.4.2125
Problem: Compiler warning for loss of data. Solution: Add a type cast. (Christian Brabandt)
This commit is contained in:
@@ -304,7 +304,7 @@ trunc_string(
|
||||
if (len + n > room || half == 0)
|
||||
break;
|
||||
len += n;
|
||||
i = half;
|
||||
i = (int)half;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user