replace obsolete "pointer" typedef by plain void*

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-07 17:30:50 +01:00
committed by Enrico Weigelt
parent 2685b4b17b
commit 3a32e86283

View File

@@ -114,8 +114,8 @@ static XF86ModuleVersionInfo sunffbVersRec =
_X_EXPORT XF86ModuleData sunffbModuleData = { &sunffbVersRec, ffbSetup, NULL };
pointer
ffbSetup(pointer module, pointer opts, int *errmaj, int *errmin)
void *
ffbSetup(void *module, void *opts, int *errmaj, int *errmin)
{
static Bool setupDone = FALSE;
@@ -132,7 +132,7 @@ ffbSetup(pointer module, pointer opts, int *errmaj, int *errmin)
* The return value must be non-NULL on success even though there
* is no TearDownProc.
*/
return (pointer)TRUE;
return (void*)TRUE;
} else {
if (errmaj) *errmaj = LDR_ONCEONLY;
return NULL;