From 4251bf8c1588ce7c712a2428904839b6414b77fb Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 2 Jan 2026 17:39:09 +0100 Subject: [PATCH] replace obsolete "pointer" typedef by void* Signed-off-by: Enrico Weigelt, metux IT consult --- src/xf86Elo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xf86Elo.c b/src/xf86Elo.c index f44f8ec..3a67739 100644 --- a/src/xf86Elo.c +++ b/src/xf86Elo.c @@ -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")); }