From 32526b3c1846025f0e655f41efd4e5428da16b6c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Jan 2019 17:43:09 +0100 Subject: patch 8.1.0779: argument for message functions is inconsistent Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *". --- src/if_perl.xs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/if_perl.xs') diff --git a/src/if_perl.xs b/src/if_perl.xs index 356108598b..203bb6a679 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 -- cgit v1.2.3