diff options
Diffstat (limited to 'src/ex_eval.c')
-rw-r--r-- | src/ex_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c index eaa5dec8c..1da7f1bc1 100644 --- a/src/ex_eval.c +++ b/src/ex_eval.c @@ -453,7 +453,7 @@ throw_exception(value, type, cmdname) mesg = excp->messages->throw_msg; if (cmdname != NULL && *cmdname != NUL) { - cmdlen = STRLEN(cmdname); + cmdlen = (int)STRLEN(cmdname); excp->value = vim_strnsave((char_u *)"Vim(", 4 + cmdlen + 2 + (int)STRLEN(mesg)); if (excp->value == NULL) |