X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccan_depends.c;h=a487e09be712588122142c6d9274ff4b9397e4bd;hp=bfaa5c4e1c9bef5e19867f0ab783215b53360d8b;hb=0cfb63013bd23d9820af92cd10035bac461f9845;hpb=d0d65608c45c7c73bdd6cf57d7f7c44c402dc03a diff --git a/tools/ccan_depends.c b/tools/ccan_depends.c index bfaa5c4e..a487e09b 100644 --- a/tools/ccan_depends.c +++ b/tools/ccan_depends.c @@ -3,7 +3,6 @@ #include #include #include -#include int main(int argc, char *argv[]) { @@ -43,11 +42,9 @@ int main(int argc, char *argv[]) errx(1, "--non-ccan needs --compile"); if (compile) - deps = get_deps(talloc_autofree_context(), argv[1], - style, recurse, compile_info); + deps = get_deps(NULL, argv[1], style, recurse, compile_info); else - deps = get_safe_ccan_deps(talloc_autofree_context(), - argv[1], style, recurse); + deps = get_safe_ccan_deps(NULL, argv[1], style, recurse); for (i = 0; deps[i]; i++) if (strstarts(deps[i], "ccan/") == ccan)