aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-05-14 01:26:43 +1200
committerScott Anderson <ascent12@hotmail.com>2017-05-14 01:26:43 +1200
commit409065ba2ecd34d249383704f9a63b4894f55dba (patch)
tree39c0753b4d5aa7fdc61c1db0bc380559f050ba6a /include
parenteac603bfdf107daa1bb33568c8cc282713c31edd (diff)
Changed to signed
Diffstat (limited to 'include')
-rw-r--r--include/wlr/wayland.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/wayland.h b/include/wlr/wayland.h
index de3f5f10..158acc33 100644
--- a/include/wlr/wayland.h
+++ b/include/wlr/wayland.h
@@ -10,8 +10,8 @@ struct wlr_output_mode_state;
struct wlr_output_mode {
struct wlr_output_mode_state *state;
uint32_t flags; // enum wl_output_mode
- uint32_t width, height;
- uint32_t refresh; // mHz
+ int32_t width, height;
+ int32_t refresh; // mHz
};
struct wlr_output_impl;