aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene Cumm <gene.cumm@gmail.com>2014-01-24 19:19:17 -0500
committerGene Cumm <gene.cumm@gmail.com>2014-01-25 12:11:13 -0500
commit4dc109040df38bad0e819efe406dec83f29bec0a (patch)
tree5b686d8f9b1f878f3c5d15cf4633db2a4396a2f5
parentf70dfb4f1a2f0577b09c5062bebc629a6fc507d4 (diff)
downloadsyslinux-4dc109040df38bad0e819efe406dec83f29bec0a.tar.gz
syslinux-4dc109040df38bad0e819efe406dec83f29bec0a.tar.xz
syslinux-4dc109040df38bad0e819efe406dec83f29bec0a.zip
com32: fix __bswap_64_macro
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--com32/include/byteswap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/include/byteswap.h b/com32/include/byteswap.h
index d1a4d543..b7eeeb40 100644
--- a/com32/include/byteswap.h
+++ b/com32/include/byteswap.h
@@ -45,7 +45,7 @@ static inline __constfunc uint32_t __bswap_32(uint32_t v)
#define __bswap_64_macro(v) ((uint64_t) \
(((uint64_t)__bswap_32_macro((uint32_t)(v)) << 32) | \
- (__bswap_32__macro((uint32_t)((uint64_t)(v) >> 32)))))
+ (__bswap_32_macro((uint32_t)((uint64_t)(v) >> 32)))))
static inline __constfunc uint64_t __bswap_64(uint64_t v)
{