fix large number truncation logic
authorgit <redacted>
Sun, 24 May 2026 17:49:17 +0000 (13:49 -0400)
committergit <redacted>
Sun, 24 May 2026 17:49:17 +0000 (13:49 -0400)
free.c

diff --git a/free.c b/free.c
index f3c1e1fe199b90cacbc657e94e7313641a06c6ed..296cc5b8061a8abc0955b41abc265e18d4c047fe 100644 (file)
--- a/free.c
+++ b/free.c
@@ -160,7 +160,7 @@ sprintfaligned(char *buff, size_t len)
                ind = sbuff;
                *ind = '%';
                ind++; buff += t;
-               blen = 30;
+               blen = 11;
        }
        strlcpy(ind, buff, blen + 1);