From b5668e35b06595f2f9fad8f0a06be76624a658b7 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Thu, 5 Apr 2018 10:49:24 +0200 Subject: [PATCH] Fixed format string mismatch. --- libfreerdp/primitives/test/TestPrimitivesYUV.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfreerdp/primitives/test/TestPrimitivesYUV.c b/libfreerdp/primitives/test/TestPrimitivesYUV.c index 7ec2fbb54..8abe04e85 100644 --- a/libfreerdp/primitives/test/TestPrimitivesYUV.c +++ b/libfreerdp/primitives/test/TestPrimitivesYUV.c @@ -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) {