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:
parent
0c012f968b
commit
8837279869
|
@ -663,7 +663,7 @@ xf86UseMsg()
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86OSInputThreadInit()
|
xf86OSInputThreadInit(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,7 @@ xf86CloseConsole()
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86OSInputThreadInit()
|
xf86OSInputThreadInit(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -399,7 +399,7 @@ xf86UseMsg(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86OSInputThreadInit()
|
xf86OSInputThreadInit(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -26,7 +26,7 @@ xf86UseMsg(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
xf86OSInputThreadInit()
|
xf86OSInputThreadInit(void)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue