From 6876ab6bc21fab00ba8b6d97e26bcb2ed567bd18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 11 Jan 2021 18:45:12 +0100 Subject: [PATCH] =?UTF-8?q?wayland:=20pending=20=E2=80=98configure?= =?UTF-8?q?=E2=80=99=20flags:=20use=20=E2=80=99bool=E2=80=99=20in=20bit-fi?= =?UTF-8?q?elds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wayland.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wayland.h b/wayland.h index 8546d856..d77e776b 100644 --- a/wayland.h +++ b/wayland.h @@ -381,14 +381,14 @@ struct wl_window { struct { int width; int height; - uint8_t is_activated:1; - uint8_t is_fullscreen:1; - uint8_t is_maximized:1; - uint8_t is_resizing:1; - uint8_t is_tiled_top:1; - uint8_t is_tiled_bottom:1; - uint8_t is_tiled_left:1; - uint8_t is_tiled_right:1; + bool is_activated:1; + bool is_fullscreen:1; + bool is_maximized:1; + bool is_resizing:1; + bool is_tiled_top:1; + bool is_tiled_bottom:1; + bool is_tiled_left:1; + bool is_tiled_right:1; } configure; };