From 5c70e4db8a31c5d5796cd8c692b1bab1d4ca5fc1 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Fri, 7 Jun 2013 12:57:57 +0700 Subject: [PATCH] monitor: Fix ATT read by type request parameter name --- monitor/l2cap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 8c9bdf92b..1348e3fd3 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -1722,7 +1722,7 @@ static void att_find_by_type_val_rsp(const struct l2cap_frame *frame) static void att_read_type_req(const struct l2cap_frame *frame) { print_handle_range("Handle range", frame->data); - print_uuid("Attribute group type", frame->data + 4, frame->size - 4); + print_uuid("Attribute type", frame->data + 4, frame->size - 4); } static void att_read_type_rsp(const struct l2cap_frame *frame) -- 2.47.3