updated for version 7.3.204
Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)
diff --git a/src/misc1.c b/src/misc1.c
index 59add06..913da2a 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -7657,7 +7657,7 @@
 			     * 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