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
}
}
-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
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;