From 27ba0885493243945b16e14056c0a98a3ab14021 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 7 Jun 2012 21:09:39 +0200 Subject: [PATCH] updated for version 7.3.548 Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams) --- src/ops.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ops.c b/src/ops.c index ca327b955..37c6aab48 100644 --- a/src/ops.c +++ b/src/ops.c @@ -4352,7 +4352,7 @@ do_join(count, insert_space, save_undo, use_formatoptions) char_u *new_curr = skip_comment(curr, TRUE, insert_space, &prev_was_comment); - comments[t] = new_curr - curr; + comments[t] = (int)(new_curr - curr); curr = new_curr; } else diff --git a/src/version.c b/src/version.c index d07a09cd9..e9f160792 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 548, /**/ 547, /**/