diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-08-29 09:59:03 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-29 12:36:39 -0400 |
commit | 3449777a8d3fec597c40b29540800d6addd7a05e (patch) | |
tree | a06971ecd73b7b4dde853e0bb81b9aa3ad98cc3a /include/wlr | |
parent | 34f4a7b972a667e2e7490f4822ca142143529227 (diff) |
wlr_output_layout.c: fix style
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index 0d157f56..dfb5234d 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -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; }; |