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();
|
pat = last_search_pattern();
|
||||||
skiplen = 0;
|
skiplen = 0;
|
||||||
patlen = STRLEN(pat);
|
patlen = (int)STRLEN(pat);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
pat = ccline.cmdbuff + skiplen;
|
pat = ccline.cmdbuff + skiplen;
|
||||||
|
@@ -794,6 +794,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
285,
|
||||||
/**/
|
/**/
|
||||||
284,
|
284,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user