Commit d50528d6 authored by Rusty Russell's avatar Rusty Russell

ccanlint: fix score for info_summary_single_line

My refactoring introduced a bug: we need to set score=1 for the success case.
parent 1005f474
......@@ -13,6 +13,8 @@ static void check_info_summary_single_line(struct manifest *m,
struct doc_section *d;
score->pass = true;
score->score = 1;
list_for_each(infodocs, d, list) {
const char *after;
......
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