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 7d9ae3d00b
commit 294972df52
No known key found for this signature in database
GPG key ID: 04BE5A29F32D91EA
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);
}