0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

updated for version 7.3.204

Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar 2011-05-25 17:29:44 +02:00
parent bd8608d979
commit 9b83c2f979
2 changed files with 3 additions and 1 deletions

View File

@ -7657,7 +7657,7 @@ get_c_indent()
* not the one from "if () {". */
if (*l == '}')
curwin->w_cursor.col =
(l - ml_get_curline()) + 1;
(colnr_T)(l - ml_get_curline()) + 1;
if ((trypos = find_start_brace(ind_maxcomment))
== NULL

View File

@ -709,6 +709,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
204,
/**/
203,
/**/