~ chicken-core (chicken-5) a153d0f8c5eed800e61ba2ecada4bc82d77d4070


commit a153d0f8c5eed800e61ba2ecada4bc82d77d4070
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Wed Jul 2 15:41:18 2025 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Wed Jul 2 15:41:18 2025 +0100

    C_long is long long on windows

diff --git a/tests/test-gc-hooks.scm b/tests/test-gc-hooks.scm
index 288ce46d..c8509f0f 100644
--- a/tests/test-gc-hooks.scm
+++ b/tests/test-gc-hooks.scm
@@ -15,7 +15,7 @@ gc_start(int mode)
 static void
 gc_end(int mode, C_long ms)
 {
-  printf("<<<<< GC post hook - mode=%d, count=%d, ms=%ld\n", mode, --count, ms);
+  printf("<<<<< GC post hook - mode=%d, count=%d, ms=%ld\n", mode, --count, (long)ms);
 }
 
 <#
Trap