Skip to content

Commit dea5ca1

Browse files
committed
Fixed open-ended string
1 parent 76c3ad1 commit dea5ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/unittest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,7 @@ int main(const int argc, const char **argv) {
12011201
nrTests += re_encode_tests();
12021202

12031203
printf("-----------------------------------------------------------\n");
1204-
printf("Done.\nExecuted %d tests, found %d errors)\n", nrTests, nrErrors);
1204+
printf("Done.\nExecuted %d tests, found %d errors\n", nrTests, nrErrors);
12051205
if (nrErrors > 0) {
12061206
printf("UNIT TESTS FAILED!\n");
12071207
} else {

0 commit comments

Comments
 (0)