Diff between 9a6cda25fa3406008928413925a7753cdcc62b9a and 219b139e9a7b29fc01d075e656e7f5d441d5d71d

Changed Files

File Additions Deletions Status
tools/parser/avrcp.c +1 -6 modified

Full Patch

diff --git a/tools/parser/avrcp.c b/tools/parser/avrcp.c
index 485bb55..f8e4443 100644
--- a/tools/parser/avrcp.c
+++ b/tools/parser/avrcp.c
@@ -612,7 +612,7 @@ response:
 	printf("ValueCount: 0x%02x\n", num);
 
 	for (; num > 0; num--) {
-		uint8_t attr, player, value;
+		uint8_t attr, value;
 
 		p_indent(level, frm);
 
@@ -621,11 +621,6 @@ response:
 
 		p_indent(level, frm);
 
-		player = get_u8(frm);
-		printf("Player: 0x%02x\n", player);
-
-		p_indent(level, frm);
-
 		value = get_u8(frm);
 		printf("ValueID: 0x%02x (%s)\n", value,
 						value2str(attr, value));