Merge fixes from 'NetHack-3.6' into NetHack-3.7-Jan2020

This commit is contained in:
nhmall
2020-01-20 21:33:20 -05:00
10 changed files with 73 additions and 17 deletions

View File

@@ -610,7 +610,11 @@ VA_DECL(const char *, str)
{
char buf[BUFSZ];
#if !defined(NO_VSNPRINTF)
(void) vsnprintf(buf, sizeof buf, str, VA_ARGS);
#else
Vsprintf(buf, str, VA_ARGS);
#endif
raw_print(buf);
paniclog("panic", buf);
}