diff options
Diffstat (limited to 'glx/glxbyteorder.h')
-rw-r--r-- | glx/glxbyteorder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glx/glxbyteorder.h b/glx/glxbyteorder.h index cdf6b15f0..73f0f7df7 100644 --- a/glx/glxbyteorder.h +++ b/glx/glxbyteorder.h @@ -51,11 +51,11 @@ #define bswap_32(value) \ (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \ (uint32_t)bswap_16((uint16_t)((value) >> 16))) - + #define bswap_64(value) \ (((uint64_t)bswap_32((uint32_t)((value) & 0xffffffff)) \ << 32) | \ (uint64_t)bswap_32((uint32_t)((value) >> 32))) #endif -#endif /* !defined(__GLXBYTEORDER_H__) */ +#endif /* !defined(__GLXBYTEORDER_H__) */ |