From 13a747e62cdba737f4bb01e66d28e0b929fd7966 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 9 Dec 2025 11:31:00 +0100 Subject: [PATCH] [PR #1594] xfree86: fix xf86VGAarbiterWrapFunctions() definition in non-libpciaccess case PR: https://github.com/X11Libre/xserver/pull/1594 --- hw/xfree86/common/xf86VGAarbiter_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86VGAarbiter_priv.h b/hw/xfree86/common/xf86VGAarbiter_priv.h index d6dd9ccff..b153ff880 100644 --- a/hw/xfree86/common/xf86VGAarbiter_priv.h +++ b/hw/xfree86/common/xf86VGAarbiter_priv.h @@ -23,7 +23,7 @@ void xf86VGAarbiterUnlock(ScrnInfoPtr pScrn); static inline void xf86VGAarbiterInit() {} static inline void xf86VGAarbiterFini() {} static inline void xf86VGAarbiterScrnInit(ScrnInfoPtr pScrn) {} -static inline void xf86VGAarbiterWrapFunctions(void) { return FALSE; } +static inline void xf86VGAarbiterWrapFunctions(void) {} static inline void xf86VGAarbiterLock(ScrnInfoPtr pScrn) {} static inline void xf86VGAarbiterUnlock(ScrnInfoPtr pScrn) {}