misc1.c: enable -Wconversion

This commit is contained in:
Charles Joachim
2016-02-27 22:45:27 -05:00
parent 83c683f5e1
commit a3dfd1627e
5 changed files with 211 additions and 258 deletions

View File

@@ -1815,7 +1815,7 @@ static bool del_char_after_col(int limit_col)
if (*get_cursor_pos_ptr() == NUL || curwin->w_cursor.col == ecol) {
return false;
}
del_bytes((long)(ecol - curwin->w_cursor.col), false, true);
del_bytes(ecol - curwin->w_cursor.col, false, true);
} else {
del_char(false);
}