aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parser/hci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/parser/hci.c b/parser/hci.c
index d14f8c5..a1fc1a4 100644
--- a/parser/hci.c
+++ b/parser/hci.c
@@ -770,7 +770,8 @@ static inline void set_event_flt_dump(int level, struct frame *frm)
set_event_flt_cp *cp = frm->ptr;
p_indent(level, frm);
- printf("type %d condition %d\n", cp->flt_type, cp->cond_type);
+ printf("type %d condition %d\n", cp->flt_type,
+ (cp->flt_type == 0) ? 0 : cp->cond_type);
switch (cp->flt_type) {
case FLT_CLEAR_ALL: