mirror of
https://github.com/X11Libre/xf86-video-suncg14.git
synced 2026-03-24 01:25:04 +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
aaff5fdafa
commit
78e4715776
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user