From 1cb6499dfe7db91c55d8970e5f10a065ca22a123 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Wed, 3 Jun 2026 15:50:39 +0100 Subject: [PATCH] Fixed loop check --- lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1