Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-02-15 02:39:57 +0400
committerFelix Fietkau <nbd@openwrt.org>2013-02-15 02:39:57 +0400
commitbd47d85d38ee5fb1fb8a37d006f51443f67a2061 (patch)
tree841ff2ef9cb106701b3923b64f15c1cb4426c6f3 /utils.h
parentfcd5ba8fbdf745fd6dac672d8891260bdc5669c9 (diff)
utils: make le16 endian conversion functions work with arguments that have side effects
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.h b/utils.h
index 41ea02c..71a4692 100644
--- a/utils.h
+++ b/utils.h
@@ -99,7 +99,7 @@ void clock_gettime(int type, struct timespec *tv);
#define __LITTLE_ENDIAN LITTLE_ENDIAN
#endif
-#define __u_bswap16(x) ((uint16_t)((((x) >> 8) & 0xffu) | (((x) & 0xffu) << 8)))
+#define __u_bswap16(x) ({ uint16_t val = (x); ((uint16_t)(((val >> 8) & 0xffu) | ((val & 0xffu) << 8))); })
#if _GNUC_MIN_VER(4, 2)
#define __u_bswap32(x) __builtin_bswap32(x)