mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.0285: compiler warning for conversion
Problem: Compiler warning for conversion. Solution: Add a type cast. (Mike Williams)
This commit is contained in:
@@ -580,7 +580,7 @@ may_adjust_incsearch_highlighting(
|
||||
{
|
||||
pat = last_search_pattern();
|
||||
skiplen = 0;
|
||||
patlen = STRLEN(pat);
|
||||
patlen = (int)STRLEN(pat);
|
||||
}
|
||||
else
|
||||
pat = ccline.cmdbuff + skiplen;
|
||||
|
Reference in New Issue
Block a user