mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -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:
@@ -3745,7 +3745,7 @@ show_utf8(void)
|
||||
len = utfc_ptr2len(line);
|
||||
if (len == 0)
|
||||
{
|
||||
MSG("NUL");
|
||||
msg("NUL");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -3770,7 +3770,7 @@ show_utf8(void)
|
||||
break;
|
||||
}
|
||||
|
||||
msg(IObuff);
|
||||
msg((char *)IObuff);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user