From 99bda64b3934be1e922693443afa0593a78873c9 Mon Sep 17 00:00:00 2001 From: Vikrampal Yadav Date: Wed, 19 Nov 2014 20:07:30 +0530 Subject: [PATCH] monitor: Fix the return value of l2cap_frame_get_le16() The return value of l2cap_frame_get_le16() rectified. --- monitor/l2cap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/l2cap.h b/monitor/l2cap.h index c14aeeff0..975f78a12 100644 --- a/monitor/l2cap.h +++ b/monitor/l2cap.h @@ -92,7 +92,7 @@ static inline bool l2cap_frame_get_le16(struct l2cap_frame *frame, l2cap_frame_pull(frame, frame, sizeof(*value)); - return 0; + return true; } static inline bool l2cap_frame_get_be32(struct l2cap_frame *frame, -- 2.47.3