diff --git a/Examples/C/SimpleDemo/SimpleDemo.c b/Examples/C/SimpleDemo/SimpleDemo.c index 1484985..bf992af 100644 --- a/Examples/C/SimpleDemo/SimpleDemo.c +++ b/Examples/C/SimpleDemo/SimpleDemo.c @@ -32,6 +32,7 @@ #include #include +#include void PrintZydisError() { @@ -153,7 +154,7 @@ int main() puts("64 bit test ...\n\n"); while (ZydisDecodeInstruction(decoder, &info)) { - printf("%016llX ", info.instrAddress); + printf("%016"PRIu64"X ", info.instrAddress); if (info.flags & ZYDIS_IF_ERROR_MASK) { printf("db %02X", info.data[0]);