diff --git a/tools/parser/hci.c b/tools/parser/hci.c
index 23ea777..bf6b156 100644
--- a/tools/parser/hci.c
+++ b/tools/parser/hci.c
}
}
-static inline void link_supervision_timeout_dump(int level, struct frame *frm)
+static inline void link_supervision_timeout_change_dump(int level, struct frame *frm)
{
- evt_link_supervision_timeout *evt = frm->ptr;
+ evt_link_supervision_timeout_change *evt = frm->ptr;
p_indent(level, frm);
printf("handle %d timeout %d\n",
case EVT_EXTENDED_INQUIRY_RESULT:
extended_inq_result_dump(level + 1, frm);
break;
- case EVT_LINK_SUPERVISION_TIMEOUT:
- link_supervision_timeout_dump(level + 1, frm);
+ case EVT_LINK_SUPERVISION_TIMEOUT_CHANGE:
+ link_supervision_timeout_change_dump(level + 1, frm);
break;
default:
raw_dump(level, frm);