Diff between b1cf1d94a05dc0c7c2009ffed540d804fc83da61 and 6883784cf7d0538320413c888c052a6ce8a1666d
Changed Files
| File | Additions | Deletions | Status |
| tools/parser/hci.c | +3 | -2 | modified |
Full Patch
diff --git a/tools/parser/hci.c b/tools/parser/hci.c
index f1507fc..a3f001b 100644
--- a/tools/parser/hci.c
+++ b/tools/parser/hci.c
@@ -917,8 +917,9 @@ static inline void setup_sync_conn_dump(int level, struct frame *frm)
setup_sync_conn_cp *cp = frm->ptr;
p_indent(level, frm);
- printf("handle %d voice setting 0x%4.4x\n", btohs(cp->handle),
- btohs(cp->voice_setting));
+ printf("handle %d voice setting 0x%4.4x ptype 0x%4.4x\n",
+ btohs(cp->handle), btohs(cp->voice_setting),
+ btohs(cp->pkt_type));
}
static inline void hold_mode_dump(int level, struct frame *frm)