From 562f4c30eeebc42b69b4a9963d16dc39b2e2280a Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Thu, 9 Nov 2023 16:48:48 -0800 Subject: [PATCH] Fix typo --- src/gcfinal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gcfinal.c b/src/gcfinal.c index 77780a6..40ddca6 100644 --- a/src/gcfinal.c +++ b/src/gcfinal.c @@ -367,7 +367,7 @@ LispPTR arrayblockmerger(LispPTR base, LispPTR nbase) { * move the boundary to make a big block and a minimum size leftover block */ if (base + (2 * arlens) != nbase) { - error("Attempt to merge non-adjacent blocks in array space\n") + error("Attempt to merge non-adjacent blocks in array space\n"); } if (narlens > secondbite) { /* (2) or (3) */ arlens = MAXARRAYBLOCKSIZE;