Fixed format string mismatch.

This commit is contained in:
Armin Novak 2018-04-05 10:49:24 +02:00
parent 72d574b31e
commit b5668e35b0

View File

@ -886,7 +886,7 @@ int TestPrimitivesYUV(int argc, char* argv[])
if (argc > 1)
{
int rc = sscanf(argv[1], "%l"PRIu32"x%"PRIu32, &roi.width, &roi.height);
int rc = sscanf(argv[1], "%"PRIu32"x%"PRIu32, &roi.width, &roi.height);
if (rc != 2)
{