summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiulio Camuffo <giuliocamuffo@gmail.com>2013-04-02 22:29:46 +0200
committerKristian Høgsberg <krh@bitplanet.net>2013-04-02 17:11:44 -0400
commit6ca428edc8344c800be3369da3ac8d91fe75c175 (patch)
treea7b326a9411789f6bec15d5b2c76d691b800fadb
parent3bda215130c245d222471e6430472d02023d0d6f (diff)
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.
-rw-r--r--src/wayland-server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland-server.h b/src/wayland-server.h
index 38b8303..e5a862a 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;