mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0541: compiler warning on MS-Windows
Problem: Compiler warning on MS-Windows. Solution: Add a type cast. (Mike Williams)
This commit is contained in:
@@ -9032,7 +9032,7 @@ ins_bs(
|
|||||||
(linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
|
(linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
--Insstart.lnum;
|
--Insstart.lnum;
|
||||||
Insstart.col = STRLEN(ml_get(Insstart.lnum));
|
Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* In replace mode:
|
* In replace mode:
|
||||||
|
@@ -764,6 +764,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 */
|
||||||
|
/**/
|
||||||
|
541,
|
||||||
/**/
|
/**/
|
||||||
540,
|
540,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user