mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
(chibi disasm): Use %I64d on Win64
This commit is contained in:
parent
4d4b6f0474
commit
d313f85b16
1 changed files with 4 additions and 0 deletions
|
@ -11,7 +11,11 @@
|
||||||
#define SEXP_DISASM_PAD_WIDTH 4
|
#define SEXP_DISASM_PAD_WIDTH 4
|
||||||
|
|
||||||
#if SEXP_64_BIT
|
#if SEXP_64_BIT
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define SEXP_PRId "%I64d"
|
||||||
|
#else
|
||||||
#define SEXP_PRId "%ld"
|
#define SEXP_PRId "%ld"
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define SEXP_PRId "%d"
|
#define SEXP_PRId "%d"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue