Fix old-style definition warning for xf86OSInputThreadInit()

../hw/xfree86/os-support/stub/stub_init.c: In function ‘xf86OSInputThreadInit’:
../hw/xfree86/os-support/stub/stub_init.c:29:1: warning: old-style function definition [-Wold-style-definition]
This commit is contained in:
Jon Turney 2019-04-17 11:37:11 +01:00
parent 6975807945
commit 7c266cafed
5 changed files with 5 additions and 5 deletions

View File

@ -663,7 +663,7 @@ xf86UseMsg()
} }
void void
xf86OSInputThreadInit() xf86OSInputThreadInit(void)
{ {
return; return;
} }

View File

@ -89,7 +89,7 @@ xf86CloseConsole()
} }
void void
xf86OSInputThreadInit() xf86OSInputThreadInit(void)
{ {
return; return;
} }

View File

@ -409,7 +409,7 @@ xf86UseMsg(void)
} }
void void
xf86OSInputThreadInit() xf86OSInputThreadInit(void)
{ {
return; return;
} }

View File

@ -74,7 +74,7 @@ xf86OSInitVidMem(VidMemInfoPtr pVidMem)
/***************************************************************************/ /***************************************************************************/
void void
xf86OSInputThreadInit() xf86OSInputThreadInit(void)
{ {
/* /*
* Need to enable in input thread as well, as Solaris kernel tracks * Need to enable in input thread as well, as Solaris kernel tracks

View File

@ -26,7 +26,7 @@ xf86UseMsg(void)
} }
void void
xf86OSInputThreadInit() xf86OSInputThreadInit(void)
{ {
return; return;
} }