[codec,test] fix wrong format string

This commit is contained in:
Armin Novak 2023-07-29 12:36:25 +02:00 committed by akallabeth
parent 2378551105
commit 4e1781740c

View File

@ -892,7 +892,7 @@ static int test_progressive_decode(PROGRESSIVE_CONTEXT* progressive, EGFX_SAMPLE
{
const float rate = ((float)cnt) / ((float)size) * 100.0f;
printf("Progressive RemoteFX decompression failure\n");
printf("Actual, Expected (%d/%d = %.3f%%):\n", cnt, size, rate);
printf("Actual, Expected (%" PRIuz "/%" PRIuz " = %.3f%%):\n", cnt, size, rate);
}
// WLog_Image(progressive->log, WLOG_TRACE, g_DstData, g_Width, g_Height, 32);