updated for version 7.3.525
Problem: Compiler warning on 64 bit MS-Windows.
Solution: Add type cast. (Mike Williams)
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 3d0c26f..a3a9c7b 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -5263,7 +5263,7 @@
{
static char_u compl[2] = { NUL, NUL };
char *short_names = ":=@>?/";
- int short_names_count = STRLEN(short_names);
+ int short_names_count = (int)STRLEN(short_names);
int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
if (idx < short_names_count)
diff --git a/src/version.c b/src/version.c
index 6878ef2..50c3d03 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 525,
+/**/
524,
/**/
523,