aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-08-29 09:59:03 -0400
committerTony Crisci <tony@dubstepdish.com>2017-08-29 12:36:39 -0400
commit3449777a8d3fec597c40b29540800d6addd7a05e (patch)
treea06971ecd73b7b4dde853e0bb81b9aa3ad98cc3a /include/wlr
parent34f4a7b972a667e2e7490f4822ca142143529227 (diff)
wlr_output_layout.c: fix style
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_output_layout.h8
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;
};