~ chicken-core (chicken-5) 2148440a304e68aed9c7232ebf4a476f363eb247


commit 2148440a304e68aed9c7232ebf4a476f363eb247
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Sep 10 04:27:35 2010 -0400
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Fri Sep 10 04:27:35 2010 -0400

    typo fix

diff --git a/runtime.c b/runtime.c
index 289a729a..55638777 100644
--- a/runtime.c
+++ b/runtime.c
@@ -8661,7 +8661,7 @@ C_regparm C_word C_fcall C_i_o_fixnum_quotient(C_word n1, C_word n2)
   if(x2 == 0)
     barf(C_DIVISION_BY_ZERO_ERROR, "fx/?");
 
-#ifdef C_SIXYT_FOUR
+#ifdef C_SIXTY_FOUR
   if(x1 == 0x8000000000000000L && x2 == -1) return C_SCHEME_FALSE;
 #else
   if(x1 == 0x80000000L && x2 == -1) return C_SCHEME_FALSE;
Trap