mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 23:08:16 +00:00
vim-patch:8.1.0779: argument for message functions is inconsistent
Problem: Argument for message functions is inconsistent.
Solution: Make first argument to msg() "char *".
32526b3c18
This commit is contained in:
@@ -7302,8 +7302,8 @@ static void 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