From: Lucas De Marchi <lucas.de.marchi@xxxxxxxxx> Use plain int instead of gint. In glib gint is always a typedef to int, so it's safe to use it even for callbacks with glib. --- profiles/scanparam/scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/scanparam/scan.c b/profiles/scanparam/scan.c index dbbb4ea..a9baec8 100644 --- a/profiles/scanparam/scan.c +++ b/profiles/scanparam/scan.c @@ -66,7 +66,7 @@ struct scan { static GSList *servers = NULL; -static gint scan_device_cmp(gconstpointer a, gconstpointer b) +static int scan_device_cmp(gconstpointer a, gconstpointer b) { const struct scan *scan = a; const struct btd_device *device = b; -- 1.8.2.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html