mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.0779: argument for message functions is inconsistent
Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *".
This commit is contained in:
@@ -8199,8 +8199,8 @@ report_re_switch(char_u *pat)
|
||||
if (p_verbose > 0)
|
||||
{
|
||||
verbose_enter();
|
||||
MSG_PUTS(_("Switching to backtracking RE engine for pattern: "));
|
||||
MSG_PUTS(pat);
|
||||
msg_puts(_("Switching to backtracking RE engine for pattern: "));
|
||||
msg_puts((char *)pat);
|
||||
verbose_leave();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user