aboutsummaryrefslogtreecommitdiff
path: root/tests/driver.c
diff options
context:
space:
mode:
authoraxtlos <axtlos@disroot.org>2024-09-27 21:31:47 +0200
committeraxtlos <axtlos@disroot.org>2024-09-27 21:31:47 +0200
commitb2182396df5d99ff5c26161aaffa5ced879742c5 (patch)
treec848fc157ab55c63b49b063d212c1671fa41afae /tests/driver.c
parent7aa261f8d57cb53cc334f6bf1920a6f8517ff054 (diff)
downloadextlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.gz
extlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.bz2
Fix join_str on musl and add manpage
Diffstat (limited to '')
-rw-r--r--tests/driver.c2
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