make buffer large enough for any argument value

This commit is contained in:
2023-03-07 17:25:11 +01:00
committed by Michael Davidsaver
parent c7a769e5da
commit 0b01fb20db

View File

@@ -663,7 +663,7 @@ int otoi(Char *str)
char *readable_form(int c)
{
static char rform[10];
static char rform[16];
if ( (c >= 0 && c < 32) || c >= 127 )
{