Added missing braces.

FossilOrigin-Name: 69179fd39ccf11c822ee6e4400220cf6a5c2c6e6fb1fe72524decfc5e15dfc0e
This commit is contained in:
7u83@mail.ru 2015-03-28 08:56:51 +00:00
parent ac96149287
commit 01c0b021e6
1 changed files with 2 additions and 2 deletions

View File

@ -147,10 +147,10 @@
(*(uint8_t*)(src))
#define lw_get_word(src) \
(ntohs( *(uint16_t*(src))))
(ntohs( *((uint16_t*)(src))))
#define lw_get_dword(src) \
(ntohl( *(uint32_t*(src))))
(ntohl( *((uint32_t*)(src))))
/* the following functions are defined as static inline and not as