make buffer large enough for any argument value

This commit is contained in:
2023-03-10 10:56:58 +00:00
committed by Michael Davidsaver
co-authored by Michael Davidsaver
parent c7a769e5da
commit 0b01fb20db
+1 -1
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 )
{