mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.3.842
Problem: Compiler warning for signed/unsigned pointer. Solution: Add type cast. (Christian Brabandt)
This commit is contained in:
@@ -5170,7 +5170,7 @@ eval7(arg, rettv, evaluate, want_string)
|
||||
* what follows. So set it here. */
|
||||
if (rettv->v_type == VAR_UNKNOWN && !evaluate && **arg == '(')
|
||||
{
|
||||
rettv->vval.v_string = vim_strsave("");
|
||||
rettv->vval.v_string = vim_strsave((char_u *)"");
|
||||
rettv->v_type = VAR_FUNC;
|
||||
}
|
||||
|
||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
842,
|
||||
/**/
|
||||
841,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user