From ab3f3ad3a0570845f4f4e7ebb241925a8292305d Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Tue, 7 Jun 2016 22:36:01 +0900 Subject: [PATCH] PRIoff is also "%lld" for Win64. Fixes issue #358. --- include/chibi/sexp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chibi/sexp.h b/include/chibi/sexp.h index 90cbbb53..c5fa449e 100755 --- a/include/chibi/sexp.h +++ b/include/chibi/sexp.h @@ -256,7 +256,7 @@ typedef short sexp_int32_t; # endif #endif -#ifdef __APPLE__ +#if defined(__APPLE__) || defined(_WIN64) #define PRIoff "%lld" #else #define PRIoff "%ld"