updated for version 7.3.548
Problem: Compiler warning on 64 bit Windows.
Solution: Add type cast. (Mike Williams)
diff --git a/src/ops.c b/src/ops.c
index ca327b9..37c6aab 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -4352,7 +4352,7 @@
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 d07a09c..e9f1607 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 548,
+/**/
547,
/**/
546,