mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -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;
|
||||
|
@@ -794,6 +794,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
285,
|
||||
/**/
|
||||
284,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user