From 59762676a8046fd671ecdcb00f2b794e575c94df Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 15 Dec 2015 10:20:33 -0500 Subject: [PATCH] Fix type of size fields for E_Shell_Data In the xdg_surface_configure_send function, the size params (width/height) come in as int32_t. This patch makes the E_Shell_Data fields for width & height match those (else we end up with compiler warnings when comparing int32_t to uint32_t). Signed-off-by: Chris Michael --- src/modules/wl_desktop_shell/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 9935c35c6..bb4020d52 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -8,8 +8,8 @@ struct E_Shell_Data { uint32_t edges; - uint32_t width; - uint32_t height; + int32_t width; + int32_t height; Eina_Bool fullscreen : 1; Eina_Bool maximized : 1; Eina_Bool activated : 1;