mirror of
https://github.com/X11Libre/xf86-video-sunffb.git
synced 2026-03-24 01:25:07 +00:00
replace obsolete "pointer" typedef by plain void*
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
2685b4b17b
commit
3a32e86283
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user