mirror of
https://github.com/X11Libre/xf86-input-void.git
synced 2026-03-24 01:24:08 +00:00
replace "pointer" typedef by void*
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
3fbd50b0bb
commit
0b3d994d0a
11
src/void.c
11
src/void.c
@@ -53,7 +53,7 @@ static void
|
||||
BellProc(
|
||||
int percent,
|
||||
DeviceIntPtr pDev,
|
||||
pointer ctrl,
|
||||
void *ctrl,
|
||||
int unused)
|
||||
{
|
||||
return;
|
||||
@@ -234,7 +234,7 @@ _X_EXPORT InputDriverRec VOID = {
|
||||
* called when the module subsection is found in XF86Config
|
||||
*/
|
||||
static void
|
||||
xf86VoidUnplug(pointer p)
|
||||
xf86VoidUnplug(void *p)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -243,11 +243,8 @@ xf86VoidUnplug(pointer p)
|
||||
*
|
||||
* called when the module subsection is found in XF86Config
|
||||
*/
|
||||
static pointer
|
||||
xf86VoidPlug(pointer module,
|
||||
pointer options,
|
||||
int *errmaj,
|
||||
int *errmin)
|
||||
static void*
|
||||
xf86VoidPlug(void *module, void *options, int *errmaj, int *errmin)
|
||||
{
|
||||
xf86AddInputDriver(&VOID, module, 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user