diff options
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r-- | src/if_perl.xs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs index 356108598..203bb6a67 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -798,11 +798,11 @@ msg_split( while ((next = strchr(token, '\n')) && !got_int) { *next++ = '\0'; /* replace \n with \0 */ - msg_attr((char_u *)token, attr); + msg_attr(token, attr); token = next; } if (*token && !got_int) - msg_attr((char_u *)token, attr); + msg_attr(token, attr); } #ifndef FEAT_EVAL |