From: Bram Moolenaar Date: Thu, 26 Jan 2012 17:52:06 +0000 (+0100) Subject: updated for version 7.3.416 X-Git-Tag: v7.3.416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=975261e8a0d017aff5fef1baf0366af5e1ea7ada;p=vim updated for version 7.3.416 Problem: Compiler warning for wrong pointer. Solution: Add type cast. --- diff --git a/src/eval.c b/src/eval.c index c63a5e0e5..7b4095eec 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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 */ diff --git a/src/version.c b/src/version.c index cdd57ad1b..4e78bd713 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 416, /**/ 415, /**/