Skip to content

Commit

Permalink
test: fix re_printf format string for multithread test (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored Sep 7, 2024
1 parent fbc3772 commit c5ae272
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 @@ -845,7 +845,7 @@ int test_multithread(void)
for (i=0; i<RE_ARRAY_SIZE(threadv); i++) {

if (threadv[i].err != 0) {
re_printf("%u failed: %-30s [%d] [%m]\n", i,
re_printf("%zu failed: %-30s [%d] [%m]\n", i,
threadv[i].test->name,
threadv[i].err, threadv[i].err);
err = threadv[i].err;
Expand Down

0 comments on commit c5ae272

Please sign in to comment.