1
0
forked from aniani/vim

updated for version 7.1-153

This commit is contained in:
Bram Moolenaar
2007-11-08 19:49:02 +00:00
parent a443af88a4
commit 6f1924547b
6 changed files with 16 additions and 4 deletions

View File

@@ -5924,7 +5924,11 @@ emsg3(s, a1, a2)
{
if (emsg_not_now())
return TRUE; /* no error messages at the moment */
#ifdef HAVE_STDARG_H
vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
#else
vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
#endif
return emsg(IObuff);
}