Commit 9361a12f authored by Rusty Russell's avatar Rusty Russell

ccanlint: fix warning about bogus return value.

parent 271676fe
......@@ -24,7 +24,7 @@ static void check_license_file_compat(struct manifest *m,
if (m->license == LICENSE_UNKNOWN) {
score->pass = true;
score->score = score->total = 0;
return 0;
return;
}
foreach_ptr(list, &m->c_files, &m->h_files) {
......
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