Remove char_u: message:smsg_attr()

This commit is contained in:
Michael Reed
2015-05-13 15:29:50 -04:00
parent 3c5864772f
commit 62bcd98ae3
4 changed files with 8 additions and 7 deletions

View File

@@ -339,12 +339,12 @@ int smsg(char *s, ...)
return msg(IObuff);
}
int smsg_attr(int attr, char_u *s, ...)
int smsg_attr(int attr, char *s, ...)
{
va_list arglist;
va_start(arglist, s);
vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist, NULL);
va_end(arglist);
return msg_attr(IObuff, attr);
}