# HG changeset patch # User Bram Moolenaar # Date 1306337384 -7200 # Node ID e6ce47f06836721108394f0b921af076606cf715 # Parent 7b2059f583c86f7193ed2b10f9957420afbbfa62 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 --- a/src/misc1.c +++ b/src/misc1.c @@ -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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 204, +/**/ 203, /**/ 202,