Commit 1b8f84cc authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

crypt32/tests: Fix printf format (PVS-Studio).

parent 7a59b27f
...@@ -7262,7 +7262,7 @@ static void test_decodeNameConstraints(DWORD dwEncoding) ...@@ -7262,7 +7262,7 @@ static void test_decodeNameConstraints(DWORD dwEncoding)
if (constraints->cPermittedSubtree != if (constraints->cPermittedSubtree !=
encodedNameConstraints[i].constraints.cPermittedSubtree) encodedNameConstraints[i].constraints.cPermittedSubtree)
fprintf(stderr, "%d: expected %d permitted, got %d\n", i, fprintf(stderr, "%d: expected %u permitted, got %u\n", i,
encodedNameConstraints[i].constraints.cPermittedSubtree, encodedNameConstraints[i].constraints.cPermittedSubtree,
constraints->cPermittedSubtree); constraints->cPermittedSubtree);
if (constraints->cPermittedSubtree == if (constraints->cPermittedSubtree ==
...@@ -7276,7 +7276,7 @@ static void test_decodeNameConstraints(DWORD dwEncoding) ...@@ -7276,7 +7276,7 @@ static void test_decodeNameConstraints(DWORD dwEncoding)
} }
if (constraints->cExcludedSubtree != if (constraints->cExcludedSubtree !=
encodedNameConstraints[i].constraints.cExcludedSubtree) encodedNameConstraints[i].constraints.cExcludedSubtree)
fprintf(stderr, "%d: expected %d excluded, got %d\n", i, fprintf(stderr, "%d: expected %u excluded, got %u\n", i,
encodedNameConstraints[i].constraints.cExcludedSubtree, encodedNameConstraints[i].constraints.cExcludedSubtree,
constraints->cExcludedSubtree); constraints->cExcludedSubtree);
if (constraints->cExcludedSubtree == if (constraints->cExcludedSubtree ==
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment