Skip to content

Commit

Permalink
fix formatting in utility function II
Browse files Browse the repository at this point in the history
  • Loading branch information
NaC-L committed Mar 9, 2024
1 parent c1a190f commit 5eb84f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ZydisFuzzShared.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ void ZydisValidateImmediateSize(ZyanU64 value)
(value != 32) &&
(value != 64))
{
fprintf(stderr, "Value %llx = 0x%016" PRIX64 " does not match any of the expected "
"values (0, 8, 16, 32, 64).\n", value, value);
fprintf(stderr, "Value 0x%016" PRIX64 " does not match any of the expected "
"values (0, 8, 16, 32, 64).\n", value);
abort();
}
}
Expand Down

0 comments on commit 5eb84f5

Please sign in to comment.