]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.416 v7.3.416
authorBram Moolenaar <Bram@vim.org>
Thu, 26 Jan 2012 17:52:06 +0000 (18:52 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 26 Jan 2012 17:52:06 +0000 (18:52 +0100)
Problem:    Compiler warning for wrong pointer.
Solution:   Add type cast.

src/eval.c
src/version.c

index c63a5e0e5e6592159b499c8624f11cb9d40833a9..7b4095eec7919f7461ca29d4603ff7e9214656df 100644 (file)
@@ -21802,7 +21802,7 @@ get_user_func_name(xp, idx)
        fp = HI2UF(hi);
 
        if (fp->uf_flags & FC_DICT)
-           return ""; /* don't show dict functions */
+           return (char_u *)""; /* don't show dict functions */
 
        if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
            return fp->uf_name; /* prevents overflow */
index cdd57ad1b3c32046ac3bcb6a7cb44aacfd74e7ac..4e78bd7131f5643656748ec8ab118ee327cae5cc 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    416,
 /**/
     415,
 /**/