expand a buffer size to properly handle full-size 64 bit values

This commit is contained in:
mrg 2019-10-13 07:42:27 +00:00
parent de11d87641
commit 9ded70a5ef
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ char *
format_k(long amt)
{
static char retarray[NUM_STRINGS][16];
static char retarray[NUM_STRINGS][24];
static int idx = 0;
register char *ret;
register char tag = 'K';