~ chicken-core (chicken-5) 9a29061ddeb249c94621b8ffe479150dad9bdeaa
commit 9a29061ddeb249c94621b8ffe479150dad9bdeaa
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Sep 20 03:40:08 2010 -0400
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Mon Sep 20 03:40:08 2010 -0400
use long on 64-bit
diff --git a/runtime.c b/runtime.c
index 55638777..a3e4680b 100644
--- a/runtime.c
+++ b/runtime.c
@@ -8648,7 +8648,7 @@ C_regparm C_word C_fcall C_i_o_fixnum_quotient(C_word n1, C_word n2)
{
C_word x1, x2;
#ifdef C_SIXTY_FOUR
- static int eight_0 = 0x8000000000000000;
+ static long eight_0 = 0x8000000000000000L;
#else
static int eight_0 = 0x80000000;
#endif
Trap