1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-31 11:32:00 +00:00

it should have been I64x, not I64u

This commit is contained in:
mrdudz 2022-11-28 06:25:45 +01:00
parent 765e7d1efa
commit 05c2530243

View File

@ -68,12 +68,12 @@
/* This is a terrible hack that tries to combat the ever reoccuring issue with /* 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 Mingw and PRIXPTR - the macro should have been defined like this for us in
the first place. 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. you probably have to update.
*/ */
#if defined(__MINGW64__) #if defined(__MINGW64__)
#undef PRIXPTR #undef PRIXPTR
#define PRIXPTR "I64u" #define PRIXPTR "I64x"
#endif #endif
/*****************************************************************************/ /*****************************************************************************/