Commit 6c31b5c9 authored by Dan Good's avatar Dan Good Committed by Rusty Russell

tweaks from feedback - thanks

parent d26475dc
...@@ -93,7 +93,9 @@ int main(int argc, char *argv[]) ...@@ -93,7 +93,9 @@ int main(int argc, char *argv[])
if (argc != 2) if (argc != 2)
return 1; return 1;
if (strcmp(argv[1], "depends") == 0) { if (strcmp(argv[1], "depends") == 0)
return 0;
if (strcmp(argv[1], "testdepends") == 0) {
printf("ccan/failtest\n"); printf("ccan/failtest\n");
return 0; return 0;
} }
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
unsigned last_fail_line; unsigned last_fail_line;
enum failtest_result once_only(struct tlist_calls *history) static enum failtest_result once_only(struct tlist_calls *history)
{ {
const struct failtest_call *tail = tlist_tail(history, list); const struct failtest_call *tail = tlist_tail(history, list);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment