From 66ec95ebb0975c79db2f3282ea264ffdb32abf18 Mon Sep 17 00:00:00 2001 From: Hysterical Raisins Date: Mon, 8 Jul 2019 09:15:27 +0200 Subject: [PATCH] fix-up prototypes (-Wincompatible-pointer-types) --- src/imservice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imservice.c b/src/imservice.c index aed73222..4ee756ce 100644 --- a/src/imservice.c +++ b/src/imservice.c @@ -5,8 +5,8 @@ #include "eekboard/eekboard-context-service.h" -void imservice_handle_text_change_cause(void *data, struct zwp_input_method_v2 *input_method) {} -void imservice_handle_content_type(void *data, struct zwp_input_method_v2 *input_method) {} +void imservice_handle_text_change_cause(void *data, struct zwp_input_method_v2 *input_method, uint32_t cause) {} +void imservice_handle_content_type(void *data, struct zwp_input_method_v2 *input_method, uint32_t hint, uint32_t purpose) {} void imservice_handle_unavailable(void *data, struct zwp_input_method_v2 *input_method) {}