Commit c906ef09 authored by Rusty Russell's avatar Rusty Russell

ccanlint: list file errors in order they are encountered.

parent 02c515a1
......@@ -557,5 +557,5 @@ void score_file_error(struct score *score, struct ccan_file *f, unsigned line,
fe->file = f;
fe->line = line;
fe->error = error;
list_add(&score->per_file_errors, &fe->list);
list_add_tail(&score->per_file_errors, &fe->list);
}
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