projects
/
vim
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a94225
)
updated for version 7.3.744
v7.3.744
author
Bram Moolenaar
<Bram@vim.org>
Thu, 29 Nov 2012 19:10:00 +0000
(20:10 +0100)
committer
Bram 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
patch
|
blob
|
history
src/version.c
patch
|
blob
|
history
diff --git
a/src/ex_cmds.c
b/src/ex_cmds.c
index 0bef623c0e3e569b3f6c34b4214063893e71b903..a217402476ae971c8927f930771474e6514a4f7e 100644
(file)
--- a/
src/ex_cmds.c
+++ b/
src/ex_cmds.c
@@
-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);
diff --git
a/src/version.c
b/src/version.c
index 9bc2ebf2134f1845961912ae42645a4b5b4eeff1..708e48742e41a2fb2869bf7765fca562c5a66bae 100644
(file)
--- a/
src/version.c
+++ b/
src/version.c
@@
-725,6
+725,8
@@
static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 744,
/**/
743,
/**/