mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
Merge pull request #10873 from akallabeth/create-deb
[utils,test] fix invalid format string
This commit is contained in:
@@ -129,8 +129,9 @@ int TestRingBuffer(int argc, char* argv[])
|
||||
{
|
||||
if (chunks[0].data[i] != i % 5)
|
||||
{
|
||||
(void)fprintf(stderr, "invalid byte at %d, got %" PRIu8 " instead of %d\n", i,
|
||||
chunks[0].data[i], i % 5);
|
||||
(void)fprintf(stderr,
|
||||
"invalid byte at %" PRIuz ", got %" PRIu8 " instead of %" PRIuz "\n", i,
|
||||
chunks[0].data[i], i % 5ULL);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user