From ba1561946f0b485fb8e079d5edd5c3e9545a0978 Mon Sep 17 00:00:00 2001 From: Leandro Ribeiro Date: Wed, 10 Jan 2024 19:33:04 -0300 Subject: [PATCH] shared: include missing header to weston-assert We forgot to include stdbool to weston-assert.h, but this was not causing issues because callers of weston_assert_true() themselves include stdbool. Add stdbool to weston-assert, as this is the right thing to do. Signed-off-by: Leandro Ribeiro --- shared/weston-assert.h | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/weston-assert.h b/shared/weston-assert.h index f637aa745..f0fb85612 100644 --- a/shared/weston-assert.h +++ b/shared/weston-assert.h @@ -29,6 +29,7 @@ #include #include #include +#include struct weston_compositor;