projects
/
ccan
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
tap: don't _exit on success
[ccan]
/
ccan
/
tap
/
test
/
run.c
diff --git
a/ccan/tap/test/run.c
b/ccan/tap/test/run.c
index c119e74fd4099726a900e741199d38b7e760fb9f..efc8134dcbd273edd34a8269220486ada6dbc278 100644
(file)
--- a/
ccan/tap/test/run.c
+++ b/
ccan/tap/test/run.c
@@
-129,5
+129,5
@@
int main(int argc, char *argv[])
write_all(stdoutfd, "ok 1 - All passed\n",
strlen("ok 1 - All passed\n"));
-
_
exit(0);
+ exit(0);
}