projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9588b5
)
Fix gcc issue on Mac byteorder
author
Dagobert Michelsen
<dam@opencsw.org>
Thu, 5 Apr 2018 08:49:30 +0000
(10:49 +0200)
committer
Pavel Rochnyack
<pavel2000@ngs.ru>
Mon, 21 May 2018 05:03:31 +0000
(12:03 +0700)
src/stdendian.h
patch
|
blob
|
history
diff --git
a/src/stdendian.h
b/src/stdendian.h
index
f84a03d
..
2fc569c
100644
(file)
--- a/
src/stdendian.h
+++ b/
src/stdendian.h
@@
-173,7
+173,7
@@
/* handle missing __builtin_bswap16
* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52624 */
#if defined __GNUC__
-/* define bswap16(x) __builtin_bswap16(x) */
+#define bswap16(x) __builtin_bswap16(x)
#else
#define bswap16(x) \
((uint16_t)((((uint16_t)(x)&0xff00) >> 8) | (((uint16_t)(x)&0x00ff) << 8)))