From 61a44dd485459d66ae1a646eab2c1bb37e3bc8b2 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Tue, 16 Dec 2014 14:23:36 -0600 Subject: [PATCH] mpdu: Fix style --- src/mpdu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mpdu.c b/src/mpdu.c index 98d0fbfb..1b9efc27 100644 --- a/src/mpdu.c +++ b/src/mpdu.c @@ -46,7 +46,7 @@ static inline bool next_2bytes(const unsigned char *mpdu, int len, if (len < *offset + 2) return false; - *holder = L_LE16_TO_CPU(*((uint16_t *) mpdu+*offset)); + *holder = L_LE16_TO_CPU(*((uint16_t *) mpdu + *offset)); *offset = *offset + 2; return true; @@ -61,7 +61,7 @@ static inline bool next_data(const unsigned char *mpdu, int len, return false; for (i = 0; i < t_len; i++) - holder[i] = mpdu[*offset+i]; + holder[i] = mpdu[*offset + i]; *offset += t_len;