mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
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]
(cherry picked from commit 7c266cafed)
This commit is contained in:
committed by
Alan Coopersmith
parent
0c012f968b
commit
8837279869
@@ -663,7 +663,7 @@ xf86UseMsg()
|
||||
}
|
||||
|
||||
void
|
||||
xf86OSInputThreadInit()
|
||||
xf86OSInputThreadInit(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -89,7 +89,7 @@ xf86CloseConsole()
|
||||
}
|
||||
|
||||
void
|
||||
xf86OSInputThreadInit()
|
||||
xf86OSInputThreadInit(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -399,7 +399,7 @@ xf86UseMsg(void)
|
||||
}
|
||||
|
||||
void
|
||||
xf86OSInputThreadInit()
|
||||
xf86OSInputThreadInit(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ xf86OSInitVidMem(VidMemInfoPtr pVidMem)
|
||||
/***************************************************************************/
|
||||
|
||||
void
|
||||
xf86OSInputThreadInit()
|
||||
xf86OSInputThreadInit(void)
|
||||
{
|
||||
/*
|
||||
* Need to enable in input thread as well, as Solaris kernel tracks
|
||||
|
||||
@@ -26,7 +26,7 @@ xf86UseMsg(void)
|
||||
}
|
||||
|
||||
void
|
||||
xf86OSInputThreadInit()
|
||||
xf86OSInputThreadInit(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user