Skip to content

Commit

Permalink
Change %zu to %Iu
Browse files Browse the repository at this point in the history
  • Loading branch information
Henkru committed Jul 16, 2024
1 parent 6102cf9 commit ec4f545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CredentialKatz-BOF/CredentialKatz/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit ec4f545

Please sign in to comment.