Diff between 4caa505cb6e46d6b518d11be69b2559d1095e8b7 and 452024ba83452eee5accdbe5506ab3683cd4790c

Changed Files

File Additions Deletions Status
monitor/rfcomm.c +5 -5 modified

Full Patch

diff --git a/monitor/rfcomm.c b/monitor/rfcomm.c
index b32ad40..fd7bbdc 100644
--- a/monitor/rfcomm.c
+++ b/monitor/rfcomm.c
@@ -90,13 +90,13 @@ struct rfcomm_lhdr {
 	uint16_t length;
 	uint8_t fcs;
 	uint8_t credits; /* only for UIH frame */
-} __attribute__((packed));
+};
 
 struct rfcomm_lmsc {
 	uint8_t dlci;
 	uint8_t v24_sig;
 	uint8_t break_sig;
-} __attribute__((packed));
+};
 
 struct rfcomm_rpn {
 	uint8_t dlci;
@@ -111,16 +111,16 @@ struct rfcomm_rpn {
 struct rfcomm_rls {
 	uint8_t dlci;
 	uint8_t error;
-} __attribute__((packed));
+};
 
 struct rfcomm_nsc {
 	uint8_t cmd_type;
-} __attribute__((packed));
+};
 
 struct rfcomm_lmcc {
 	uint8_t type;
 	uint16_t length;
-} __attribute__((packed));
+};
 
 struct rfcomm_frame {
 	struct rfcomm_lhdr hdr;