From 05c2530243e2644ccd798e985ce71c705c75d7ef Mon Sep 17 00:00:00 2001 From: mrdudz Date: Mon, 28 Nov 2022 06:25:45 +0100 Subject: [PATCH] it should have been I64x, not I64u --- src/cc65/codegen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc65/codegen.c b/src/cc65/codegen.c index 251c973ee..480cc32ea 100644 --- a/src/cc65/codegen.c +++ b/src/cc65/codegen.c @@ -68,12 +68,12 @@ /* This is a terrible hack that tries to combat the ever reoccuring issue with Mingw and PRIXPTR - the macro should have been defined like this for us in the first place. - NOTE: "I64u" works in the github actions now, so if your local mingw64 fails, + NOTE: "I64x" works in the github actions now, so if your local mingw64 fails, you probably have to update. */ #if defined(__MINGW64__) #undef PRIXPTR -#define PRIXPTR "I64u" +#define PRIXPTR "I64x" #endif /*****************************************************************************/