wlr_output_layout.c: fix style

This commit is contained in:
Tony Crisci 2017-08-29 09:59:03 -04:00
parent 34f4a7b972
commit 3449777a8d
2 changed files with 35 additions and 32 deletions

View file

@ -7,16 +7,16 @@
struct wlr_output_layout_state;
struct wlr_output_layout {
struct wl_list outputs;
struct wl_list outputs;
struct wlr_output_layout_state *state;
};
struct wlr_output_layout_output_state;
struct wlr_output_layout_output {
struct wlr_output *output;
int x, y;
struct wl_list link;
struct wlr_output *output;
int x, y;
struct wl_list link;
struct wlr_output_layout_output_state *state;
};