Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Apr 15, 2016
1 parent 02bdc35 commit 1ee7ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -11803,7 +11803,7 @@ filter_map(typval_T *argvars, typval_T *rettv, int map)
if (expr->v_type != VAR_UNKNOWN)
{
prepare_vimvar(VV_VAL, &save_val);
expr = skipwhite(expr);
expr = (typval_T*)skipwhite((char_u*)expr);

/* We reset "did_emsg" to be able to detect whether an error
* occurred during evaluation of the expression. */
Expand Down

0 comments on commit 1ee7ebd

Please sign in to comment.