Diff between f73959c6fa2714998ad215dc961c930cd96c5928 and f81021d0866a7e60b9ae7b6142966c9c61088583

Changed Files

File Additions Deletions Status
profiles/input/hog.c +1 -1 modified
profiles/input/server.c +1 -1 modified

Full Patch

diff --git a/profiles/input/hog.c b/profiles/input/hog.c
index c092875..3ce9480 100644
--- a/profiles/input/hog.c
+++ b/profiles/input/hog.c
@@ -539,7 +539,7 @@ static void output_written_cb(guint8 status, const guint8 *pdu,
 	}
 }
 
-static gint report_type_cmp(gconstpointer a, gconstpointer b)
+static int report_type_cmp(gconstpointer a, gconstpointer b)
 {
 	const struct report *report = a;
 	uint8_t type = GPOINTER_TO_UINT(b);
diff --git a/profiles/input/server.c b/profiles/input/server.c
index e15ae88..5c98573 100644
--- a/profiles/input/server.c
+++ b/profiles/input/server.c
@@ -55,7 +55,7 @@ struct input_server {
 	GIOChannel *confirm;
 };
 
-static gint server_cmp(gconstpointer s, gconstpointer user_data)
+static int server_cmp(gconstpointer s, gconstpointer user_data)
 {
 	const struct input_server *server = s;
 	const bdaddr_t *src = user_data;