replace obsolete "pointer" typedef by void*

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-02 17:39:09 +01:00
committed by Enrico Weigelt
parent 4543d8c22a
commit 4251bf8c15

View File

@@ -1085,9 +1085,9 @@ _X_EXPORT InputDriverRec ELOGRAPHICS = {
default_options
};
static pointer
Plug(pointer module,
pointer options,
static void *
Plug(void *module,
void *options,
int *errmaj,
int *errmin)
{
@@ -1097,7 +1097,7 @@ Plug(pointer module,
}
static void
Unplug(pointer p)
Unplug(void *p)
{
DBG(1, ErrorF("EloUnplug\n"));
}