From c54e30f3078c7f4054dd8822ba6f0dd70b92a3bf Mon Sep 17 00:00:00 2001 From: Petri Gynther Date: Fri, 9 May 2014 11:30:01 -0700 Subject: [PATCH] hog: Fix report_value_cb() signature Fix report_value_cb() signature to match GAttribNotifyFunc. --- profiles/input/hog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/profiles/input/hog.c b/profiles/input/hog.c index 12bc19a59..9f10fa4e5 100644 --- a/profiles/input/hog.c +++ b/profiles/input/hog.c @@ -105,8 +105,7 @@ struct report { static gboolean suspend_supported = FALSE; static GSList *devices = NULL; -static void report_value_cb(const uint8_t *pdu, uint16_t len, - gpointer user_data) +static void report_value_cb(const guint8 *pdu, guint16 len, gpointer user_data) { struct report *report = user_data; struct hog_device *hogdev = report->hogdev; -- 2.47.3