From d7212bbd72384af0ed4c11e1e35d01310261ea09 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 7 Oct 2014 14:01:20 +0300 Subject: [PATCH] android/avrcp-lib: Fix struct of SetBrowsedPlayer The position of charset field is after items not before. --- android/avrcp-lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/avrcp-lib.c b/android/avrcp-lib.c index 396792550..c919d2ce4 100644 --- a/android/avrcp-lib.c +++ b/android/avrcp-lib.c @@ -212,8 +212,8 @@ struct set_browsed_req { struct set_browsed_rsp { uint8_t status; uint16_t counter; - uint16_t charset; uint32_t items; + uint16_t charset; uint8_t depth; uint8_t data[0]; } __attribute__ ((packed)); -- 2.47.3