aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorLouis Taylor <louis@kragniz.eu>2018-12-05 08:58:51 +0000
committerLouis Taylor <louis@kragniz.eu>2018-12-05 09:02:49 +0000
commitd703ae45dde73053767ccbb3c0c3d66f2b98fd11 (patch)
tree8f005b46d0632644bdc3a6c130b7b7b91ea5a36f /rootston
parentfdb67ff63bdb301ee202a128c0b8cb616736707d (diff)
rootston: use int for width, height
Diffstat (limited to 'rootston')
-rw-r--r--rootston/desktop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index 9b5291a3..c894dbb1 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -547,7 +547,7 @@ void view_update_position(struct roots_view *view, double x, double y) {
view_damage_whole(view);
}
-void view_update_size(struct roots_view *view, uint32_t width, uint32_t height) {
+void view_update_size(struct roots_view *view, int width, int height) {
if (view->width == width && view->height == height) {
return;
}