diff options
Diffstat (limited to 'audio/main.c')
-rw-r--r-- | audio/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/main.c b/audio/main.c index 2ea2a1a3..8e4c8055 100644 --- a/audio/main.c +++ b/audio/main.c @@ -43,7 +43,7 @@ static DBusConnection *conn; -static int headset_probe(struct btd_device *device) +static int headset_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); @@ -64,7 +64,7 @@ static struct btd_device_driver headset_driver = { .remove = headset_remove, }; -static int a2dp_probe(struct btd_device *device) +static int a2dp_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); @@ -85,7 +85,7 @@ static struct btd_device_driver a2dp_driver = { .remove = a2dp_remove, }; -static int audio_probe(struct btd_device *device) +static int audio_probe(struct btd_device *device, GSList *records) { const gchar *path = device_get_path(device); DBG("path %s", path); |