summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-05-25 17:29:44 +0200
committerBram Moolenaar <bram@vim.org>2011-05-25 17:29:44 +0200
commit3dc7ed3aa4f8fd88a19722c6da922823acae3cb0 (patch)
treedb5462d575c588143c5a9e410a5c0071590c33c6
parent64278df7bcbbe64c3cebec45c7d03640af0c777e (diff)
downloadvim-3dc7ed3aa4f8fd88a19722c6da922823acae3cb0.tar.gz
updated for version 7.3.204v7.3.204v7-3-204
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
-rw-r--r--src/misc1.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 59add064..913da2ad 100644
--- 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
index d8811b26..8de124f2 100644
--- 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,