From 5fa75a7bf4fba9baf3e9137a702587fd65495a3a Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 9 Feb 2024 17:42:35 +0100 Subject: [PATCH] xfree86: common: move private defs out of xf86VGAarbiter.h public server module API headers shouldn't be clobbered with non-exported definitions, so move them out to private header file. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/xf86Init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 0e9a8c18c..65046015b 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -85,7 +85,7 @@ #include "randrstr.h" #include "xf86Bus.h" #ifdef XSERVER_LIBPCIACCESS -#include "xf86VGAarbiter.h" +#include "xf86VGAarbiter_priv.h" #endif #include "globals.h" #include "xserver-properties.h"