updated for version 7.3.744 v7.3.744
authorBram Moolenaar <Bram@vim.org>
Thu, 29 Nov 2012 19:10:00 +0000 (20:10 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 29 Nov 2012 19:10:00 +0000 (20:10 +0100)
Problem:    64 bit compiler warning.
Solution:   Add type cast. (Mike Williams)

src/ex_cmds.c
src/version.c

index 0bef623c0e3e569b3f6c34b4214063893e71b903..a217402476ae971c8927f930771474e6514a4f7e 100644 (file)
@@ -6460,7 +6460,7 @@ helptags_one(dir, ext, tagfname, add_help_tags)
     /*
      * Find all *.txt files.
      */
-    dirlen = STRLEN(dir);
+    dirlen = (int)STRLEN(dir);
     STRCPY(NameBuff, dir);
     STRCAT(NameBuff, "/**/*");
     STRCAT(NameBuff, ext);
index 9bc2ebf2134f1845961912ae42645a4b5b4eeff1..708e48742e41a2fb2869bf7765fca562c5a66bae 100644 (file)
@@ -725,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    744,
 /**/
     743,
 /**/