Skip to content

Commit

Permalink
retest: fix format string in test_listcases for size_t argument (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
cHuberCoffee authored Aug 29, 2023
1 parent a3e6ad2 commit d7efee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ void test_listcases(void)
n = RE_ARRAY_SIZE(tests);
nh = (n+1)/2;

(void)re_printf("\n%u test cases:\n", n);
(void)re_printf("\n%zu test cases:\n", n);

for (i=0; i<nh; i++) {

Expand Down

0 comments on commit d7efee9

Please sign in to comment.