On Fri, Oct 01 2021, René Scharfe wrote: > while (lines) { > - printf("%s", lines->text); > + puts(lines->text); > lines = lines->next; Aside: I wonder if we should have a coccicheck for that (not as part of this series), but maybe it would generate too much noise.