From 57b7fe851d7f173ea354adbb824f6b5e92c29a97 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 9 Jun 2017 18:05:46 +0200 Subject: [PATCH] avrcp: fix test --- test/avrcp/avrcp_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/avrcp/avrcp_test.c b/test/avrcp/avrcp_test.c index 1ce18cd2d..7fc1d578e 100644 --- a/test/avrcp/avrcp_test.c +++ b/test/avrcp/avrcp_test.c @@ -135,7 +135,7 @@ static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packe printf("notification, playing content changed\n"); return; case AVRCP_SUBEVENT_NOTIFICATION_TRACK_CHANGED: - printf("notification track changed %d\n", avrcp_subevent_notification_track_changed_get_track_status(packet)); + printf("notification track changed\n"); return; case AVRCP_SUBEVENT_NOTIFICATION_VOLUME_CHANGED: printf("notification absolute volume changed %d\n", avrcp_subevent_notification_volume_changed_get_absolute_volume(packet));