]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/compulsory_tests/check_depends_exist.c
ccanlint: put generated _info in correct directory.
[ccan] / tools / ccanlint / compulsory_tests / check_depends_exist.c
index 656901e74c65054eec3c3ffae255ff0a0e564393..bb6067edcd8bb16169d73e46c4d542e3c9f9fbeb 100644 (file)
@@ -33,7 +33,7 @@ static char *add_dep(char *sofar, struct manifest *m, const char *dep)
        return sofar;
 }
 
-static void *check_depends_exist(struct manifest *m)
+static void *check_depends_exist(struct manifest *m, unsigned int *timeleft)
 {
        unsigned int i;
        char *report = NULL;
@@ -66,7 +66,8 @@ static const char *describe_depends_exist(struct manifest *m,
 }
 
 struct ccanlint depends_exist = {
-       .name = "CCAN dependencies are present",
+       .key = "depends-exist",
+       .name = "Module's CCAN dependencies are present",
        .total_score = 1,
        .check = check_depends_exist,
        .describe = describe_depends_exist,