]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/idempotent.c
ccanlint: with -vv, give details on attempts to compile examples.
[ccan] / tools / ccanlint / tests / idempotent.c
index 6ed1767606239d7e4f8dde94c7211a52ba44ee65..95040cf62b09b2f012d77d8b3683f6a9712d79e9 100644 (file)
@@ -112,7 +112,9 @@ static char *report_idem(struct ccan_file *f, char *sofar)
        return sofar;
 }
 
-static void *check_idempotent(struct manifest *m)
+static void *check_idempotent(struct manifest *m,
+                             bool keep,
+                             unsigned int *timeleft)
 {
        struct ccan_file *f;
        char *report = NULL;
@@ -133,7 +135,7 @@ static const char *describe_idempotent(struct manifest *m, void *check_result)
 
 struct ccanlint idempotent = {
        .key = "idempotent",
-       .name = "Headers are #ifndef/#define idempotent wrapped",
+       .name = "Module headers are #ifndef/#define wrapped",
        .total_score = 1,
        .check = check_idempotent,
        .describe = describe_idempotent,