Begrudgingly format wl_list_* macros with a space before parameter list

I can't seem to configure clang-format to remove this space...
This commit is contained in:
Jente Hidskes 2020-02-17 21:11:27 +01:00
parent 6cbc202662
commit 6d0714bfa3
4 changed files with 22 additions and 22 deletions

View file

@ -173,7 +173,7 @@ output_render(struct cg_output *output, pixman_region32_t *damage)
// TODO: render only top view, possibly use focused view for this, see #35.
struct cg_view *view;
wl_list_for_each_reverse(view, &server->views, link) {
wl_list_for_each_reverse (view, &server->views, link) {
render_view_toplevels(view, output, damage);
}