From 9266733da30223d8d368bbf252a436cb7d4a31d0 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 6 Feb 2025 17:18:44 +0100 Subject: [PATCH] xwin: fix missing include of mi/mi_priv.h xwin relies on mi_priv.h being included indirectly, thus depending on exact include within other header files. This can easily break if something in other headers slightly changes. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xwin/winwindow.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/xwin/winwindow.c b/hw/xwin/winwindow.c index 5f3448a94..cdb17677c 100644 --- a/hw/xwin/winwindow.c +++ b/hw/xwin/winwindow.c @@ -32,6 +32,9 @@ #ifdef HAVE_XWIN_CONFIG_H #include #endif + +#include "mi/mi_priv.h" + #include "win.h" #include "mi/mi_priv.h"