From 6ca428edc8344c800be3369da3ac8d91fe75c175 Mon Sep 17 00:00:00 2001 From: Giulio Camuffo Date: Tue, 2 Apr 2013 22:29:46 +0200 Subject: [PATCH] server: use the right function pointer type in wl_signal_get use the wl_notify_func type, and not void *, or else wl_signal_get will not be usable by a c++ plugin because it will not cast void * to a function pointer. --- src/wayland-server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland-server.h b/src/wayland-server.h index 38b83035..e5a862a3 100644 --- a/src/wayland-server.h +++ b/src/wayland-server.h @@ -161,7 +161,7 @@ wl_signal_add(struct wl_signal *signal, struct wl_listener *listener) } static inline struct wl_listener * -wl_signal_get(struct wl_signal *signal, void *notify) +wl_signal_get(struct wl_signal *signal, wl_notify_func_t notify) { struct wl_listener *l;