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-05 20:28:54 +01:00
committed by Enrico Weigelt
parent aaff5fdafa
commit 78e4715776

View File

@@ -110,8 +110,8 @@ _X_EXPORT XF86ModuleData suncg14ModuleData = {
NULL
};
pointer
cg14Setup(pointer module, pointer opts, int *errmaj, int *errmin)
void*
cg14Setup(void *module, void *opts, int *errmaj, int *errmin)
{
static Bool setupDone = FALSE;
@@ -128,7 +128,7 @@ cg14Setup(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;