From c444223da3737b71634cc116d10f66febef7fa6e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 14 Feb 2024 14:52:16 +0100 Subject: [PATCH] xwin: fix missing prototype for winValidateArgs() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [378/383] Compiling C object hw/xwin/Xming.exe.p/winvalargs.c.obj 811../hw/xwin/winvalargs.c:57:1: warning: no previous prototype for ‘winValidateArgs’ [-Wmissing-prototypes] 812 57 | winValidateArgs(void) 813 | ^~~~~~~~~~~~~~~ Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xwin/win.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/xwin/win.h b/hw/xwin/win.h index 48795a8b5..3aa158e91 100644 --- a/hw/xwin/win.h +++ b/hw/xwin/win.h @@ -1038,6 +1038,9 @@ winCreateMsgWindowThread(void); void winOS(void); +Bool +winValidateArgs(void); + /* * END DDX and DIX Function Prototypes */