From cd35fb94406cda8c88f2b1937eed17c1f29ae2c7 Mon Sep 17 00:00:00 2001 From: Sunderland93 Date: Sun, 20 Jan 2019 22:12:05 +0400 Subject: [PATCH] Change prev_width and prev_height to unsigned int --- gfx/drivers_context/wayland_ctx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/drivers_context/wayland_ctx.c b/gfx/drivers_context/wayland_ctx.c index a712c64895..32ae40f80c 100644 --- a/gfx/drivers_context/wayland_ctx.c +++ b/gfx/drivers_context/wayland_ctx.c @@ -94,8 +94,8 @@ typedef struct gfx_ctx_wayland_data bool resize; bool configured; bool activated; - int prev_width; - int prev_height; + unsigned prev_width; + unsigned prev_height; unsigned width; unsigned height; struct wl_registry *registry;