From 4a4b56556ff3682925bb5bb09da9db022df55e9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Danis?= Date: Tue, 18 Oct 2011 12:10:53 +0200 Subject: [PATCH] Fix implicit declaration of 'g_slist_free_full' audio/avrcp.c: In function 'avrcp_unregister': audio/avrcp.c:1253: error: implicit declaration of function 'g_slist_free_full' thermometer/thermometer.c: In function 'destroy_char': thermometer/thermometer.c:79: error: implicit declaration of function 'g_slist_free_full' --- audio/avrcp.c | 2 +- thermometer/thermometer.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/audio/avrcp.c b/audio/avrcp.c index 75a83847b..e908bf4b7 100644 --- a/audio/avrcp.c +++ b/audio/avrcp.c @@ -52,7 +52,7 @@ #include "avctp.h" #include "avrcp.h" #include "sdpd.h" -#include "glib-helper.h" +#include "glib-compat.h" #include "dbus-common.h" /* Company IDs for vendor dependent commands */ diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c index 7621926be..0d8510272 100644 --- a/thermometer/thermometer.c +++ b/thermometer/thermometer.c @@ -20,6 +20,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include @@ -34,6 +38,7 @@ #include "att.h" #include "gatt.h" #include "thermometer.h" +#include "glib-compat.h" #define THERMOMETER_INTERFACE "org.bluez.Thermometer" -- 2.47.3