Correct typos and formatting errors in format strings

In several files, fixed typos in format strings that were causing unexpected output and formatting issues.
This commit is contained in:
ehdgks0627
2023-07-28 18:45:58 +09:00
committed by akallabeth
parent 3df928a8d2
commit d04ba8d6ef
15 changed files with 16 additions and 17 deletions

View File

@@ -104,7 +104,7 @@ static BOOL test_co_errors(void)
const LONG b = should[x];
if (a != b)
{
printf("mismatch[%" PRIuz "]: %0x" PRIx32 " vs %08" PRIx32 "\n", x, a, b);
printf("mismatch[%" PRIuz "]: %08" PRIx32 " vs %08" PRIx32 "\n", x, a, b);
return FALSE;
}
}