~ chicken-core (chicken-5) 686545750874d31fac022e0f9d5be75b0edd2a77


commit 686545750874d31fac022e0f9d5be75b0edd2a77
Author:     Kooda <kooda@upyum.com>
AuthorDate: Mon Feb 27 15:42:26 2017 +0100
Commit:     Kooda <kooda@upyum.com>
CommitDate: Mon Feb 27 16:09:18 2017 +0100

    Fix runtime panic with mingw-w64.
    
    Big-fixnum literals were wrongly encoded on windows 64 bits with mingw-w64.
    This fixes ticket #1344.
    
    Thanks to LemonBoy for taking the time to resolve this.

diff --git a/runtime.c b/runtime.c
index 539ad532..4d80a9ec 100644
--- a/runtime.c
+++ b/runtime.c
@@ -200,7 +200,7 @@ static C_TLS int timezone;
 #endif
 
 #ifdef C_LLP
-# define LONG_FORMAT_STRING            "%lldf"
+# define LONG_FORMAT_STRING            "%lld"
 #else
 # define LONG_FORMAT_STRING            "%ld"
 #endif
Trap