X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fccanlint%2Ftests%2Fhas_info_documentation.c;h=0a1788fd7d4fa8447239c5ab095584eafaf25c63;hp=6ecbf84247acf4a21bbe7e05f38fb84a325c8770;hb=5f4051eaef69310d43dfdc66bb60a5979638d74c;hpb=7a163ea2dcafc056fdafc8c71ef011e2bfdbeb65 diff --git a/tools/ccanlint/tests/has_info_documentation.c b/tools/ccanlint/tests/has_info_documentation.c index 6ecbf842..0a1788fd 100644 --- a/tools/ccanlint/tests/has_info_documentation.c +++ b/tools/ccanlint/tests/has_info_documentation.c @@ -82,12 +82,12 @@ static void check_has_info_documentation(struct manifest *m, "CCAN modules use /**-style comments for documentation: the\n" "overall documentation belongs in the _info metafile.\n"; has_info_documentation.handle = create_info_template_doc; - } - else if (!description) + } else if (!description) { score->error = "_info file has no module description.\n\n" "The lines after the first summary line in the _info file\n" "documentation should describe the purpose and use of the\n" "overall package\n"; + } } struct ccanlint has_info_documentation = { @@ -96,4 +96,4 @@ struct ccanlint has_info_documentation = { .check = check_has_info_documentation, }; -REGISTER_TEST(has_info_documentation, NULL); +REGISTER_TEST(has_info_documentation, &has_info, NULL);