This is to avoid conflicts with DBus interface convention used in BlueZ. --- audio/media.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/media.c b/audio/media.c index 4e23273..cc8ac37 100644 --- a/audio/media.c +++ b/audio/media.c @@ -1454,7 +1454,7 @@ static gboolean set_position(struct media_player *mp, DBusMessageIter *iter) return TRUE; } -static gboolean set_property(struct media_player *mp, const char *key, +static gboolean set_player_property(struct media_player *mp, const char *key, DBusMessageIter *entry) { DBusMessageIter var; @@ -1515,7 +1515,7 @@ static gboolean property_changed(DBusConnection *connection, DBusMessage *msg, dbus_message_iter_next(&iter); - set_property(mp, property, &iter); + set_player_property(mp, property, &iter); return TRUE; } @@ -1747,7 +1747,7 @@ static gboolean parse_player_properties(struct media_player *mp, dbus_message_iter_get_basic(&entry, &key); dbus_message_iter_next(&entry); - if (set_property(mp, key, &entry) == FALSE) + if (set_player_property(mp, key, &entry) == FALSE) return FALSE; dbus_message_iter_next(&dict); -- on behalf of ST-Ericsson -- 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