[test,listdictionary] fix format string

This commit is contained in:
akallabeth
2023-06-27 14:31:56 +02:00
committed by akallabeth
parent 51ed074d1d
commit df3f274dd0

View File

@@ -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;
}