From df3f274dd0dfd367d17f914e5918d0c322ca884f Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 27 Jun 2023 14:31:56 +0200 Subject: [PATCH] [test,listdictionary] fix format string --- winpr/libwinpr/utils/test/TestListDictionary.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/winpr/libwinpr/utils/test/TestListDictionary.c b/winpr/libwinpr/utils/test/TestListDictionary.c index 8615cb18c..0b622d200 100644 --- a/winpr/libwinpr/utils/test/TestListDictionary.c +++ b/winpr/libwinpr/utils/test/TestListDictionary.c @@ -32,7 +32,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 3) { - printf("ListDictionary_Count: Expected : 3, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 3, Actual: %" PRIuz "\n", count); return -1; } @@ -42,7 +42,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 2) { - printf("ListDictionary_Count: Expected : 2, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 2, Actual: %" PRIuz "\n", count); return -1; } @@ -52,7 +52,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 1) { - printf("ListDictionary_Count: Expected : 1, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 1, Actual: %" PRIuz "\n", count); return -1; } @@ -62,7 +62,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 0) { - printf("ListDictionary_Count: Expected : 0, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 0, Actual: %" PRIuz "\n", count); return -1; } @@ -74,7 +74,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 3) { - printf("ListDictionary_Count: Expected : 3, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 3, Actual: %" PRIuz "\n", count); return -1; } @@ -168,7 +168,7 @@ int TestListDictionary(int argc, char* argv[]) if (count != 0) { - printf("ListDictionary_Count: Expected : 0, Actual: %d\n", count); + printf("ListDictionary_Count: Expected : 0, Actual: %" PRIuz "\n", count); return -1; }