Commit 5b7e9d90 authored by Rusty Russell's avatar Rusty Russell

ccan_depends: Fix up after tools changes.

parent 36126617
...@@ -42,10 +42,10 @@ int main(int argc, char *argv[]) ...@@ -42,10 +42,10 @@ int main(int argc, char *argv[])
if (compile) if (compile)
deps = get_deps(talloc_autofree_context(), deps = get_deps(talloc_autofree_context(),
dirname, basename, recurse); dirname, basename, recurse, NULL);
else else
deps = get_safe_ccan_deps(talloc_autofree_context(), deps = get_safe_ccan_deps(talloc_autofree_context(),
dirname, basename, recurse); dirname, basename, recurse, NULL);
for (i = 0; deps[i]; i++) for (i = 0; deps[i]; i++)
if (strstarts(deps[i], "ccan/") == ccan) if (strstarts(deps[i], "ccan/") == ccan)
......
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