From 129640af7a62185ccf2063e3e089ca2c39382067 Mon Sep 17 00:00:00 2001 From: Gabriel Jacobo Date: Thu, 16 Jan 2014 15:02:41 -0300 Subject: [PATCH] Fixes prototype declaration for wl_proxy_marshal_constructor [Wayland 1.4] --- src/video/wayland/SDL_waylandsym.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/wayland/SDL_waylandsym.h b/src/video/wayland/SDL_waylandsym.h index 6d65a44bea53d..c810fab487694 100644 --- a/src/video/wayland/SDL_waylandsym.h +++ b/src/video/wayland/SDL_waylandsym.h @@ -53,7 +53,7 @@ SDL_WAYLAND_SYM(void, wl_list_insert_list, (struct wl_list *, struct wl_list *)) /* These functions are available in Wayland >= 1.4 */ SDL_WAYLAND_MODULE(WAYLAND_CLIENT_1_4) -SDL_WAYLAND_SYM(void, wl_proxy_marshal_constructor, (uint32_t opcode, const struct wl_interface *interface, ...)) +SDL_WAYLAND_SYM(struct wl_proxy *, wl_proxy_marshal_constructor, (struct wl_proxy *, uint32_t opcode, const struct wl_interface *interface, ...)) SDL_WAYLAND_INTERFACE(wl_seat_interface) SDL_WAYLAND_INTERFACE(wl_surface_interface)