From ec4f54503a166dd09f5411b70fdbff4eabbf4f3b Mon Sep 17 00:00:00 2001 From: Henri Nurmi Date: Tue, 16 Jul 2024 13:58:10 -0700 Subject: [PATCH] Change %zu to %Iu --- CredentialKatz-BOF/CredentialKatz/Memory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CredentialKatz-BOF/CredentialKatz/Memory.cpp b/CredentialKatz-BOF/CredentialKatz/Memory.cpp index eafb0b7..f9d3227 100644 --- a/CredentialKatz-BOF/CredentialKatz/Memory.cpp +++ b/CredentialKatz-BOF/CredentialKatz/Memory.cpp @@ -188,10 +188,10 @@ extern "C" { #ifdef _DEBUG BeaconPrintf(CALLBACK_OUTPUT, "Address of beginNode: 0x%p\n", (void*)credentialMap.beginNode); BeaconPrintf(CALLBACK_OUTPUT, "Address of firstNode: 0x%p\n", (void*)credentialMap.firstNode); - BeaconPrintf(CALLBACK_OUTPUT, "Size of the credential map: %zu\n", credentialMap.size); + BeaconPrintf(CALLBACK_OUTPUT, "Size of the credential map: %Iu\n", credentialMap.size); #endif // _DEBUG - BeaconPrintf(CALLBACK_OUTPUT, "Number of available credentials: %zu\n\n", credentialMap.size); + BeaconPrintf(CALLBACK_OUTPUT, "Number of available credentials: %Iu\n\n", credentialMap.size); if (credentialMap.firstNode == 0) //CookieMap was empty {