~ chicken-core (chicken-5) aad09cad8c84b14fd28cc8d561185cab253d8399


commit aad09cad8c84b14fd28cc8d561185cab253d8399
Author:     Kooda <kooda@upyum.com>
AuthorDate: Mon Feb 27 15:42:26 2017 +0100
Commit:     Kooda <kooda@upyum.com>
CommitDate: Tue Feb 28 13:26:54 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 9ccce654..a3298810 100644
--- a/runtime.c
+++ b/runtime.c
@@ -205,7 +205,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