From: Robert Pengelly Date: Wed, 3 Jun 2026 14:50:39 +0000 (+0100) Subject: Fixed loop check X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=1cb6499dfe7db91c55d8970e5f10a065ca22a123;p=scc.git Fixed loop check --- diff --git a/lib.c b/lib.c index 7eb2bb0..d833b26 100755 --- a/lib.c +++ b/lib.c @@ -1087,7 +1087,7 @@ FILE *scc_tmpfile (void) { name[index] = (j % 26) + 'A'; index--; - } while ((j /= 26) >= 26); + } while ((j /= 26) > 0); temp = xstrdup (name);