diff options
author | axtlos <axtlos@disroot.org> | 2024-09-27 21:31:47 +0200 |
---|---|---|
committer | axtlos <axtlos@disroot.org> | 2024-09-27 21:31:47 +0200 |
commit | b2182396df5d99ff5c26161aaffa5ced879742c5 (patch) | |
tree | c848fc157ab55c63b49b063d212c1671fa41afae /tests/driver.c | |
parent | 7aa261f8d57cb53cc334f6bf1920a6f8517ff054 (diff) | |
download | extlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.gz extlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.bz2 |
Fix join_str on musl and add manpage
Diffstat (limited to 'tests/driver.c')
-rw-r--r-- | tests/driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/driver.c b/tests/driver.c index 235d598..d3739b5 100644 --- a/tests/driver.c +++ b/tests/driver.c @@ -21,7 +21,7 @@ test_runner (struct test_t *test, int n) if (test_result == 0) printf ("Test Case %d: %s -- %sSUCCESS%s\n\n", n, test->test_name, success, reset); else - printf ("Test Case %d: %s -- %sFAIL %d%s\n\n", n, test->test_name, test_result, fail, reset); + printf ("Test Case %d: %s -- %sFAIL %d%s\n\n", n, test->test_name, fail, test_result, reset); } void |