Error in last commit

This commit is contained in:
Campbell Barton 2015-07-12 05:35:44 +10:00
parent 968351d916
commit 7b1489b93b

@ -83,7 +83,7 @@ BLI_INLINE void BLI_endian_switch_int64(int64_t *val)
BLI_INLINE void BLI_endian_switch_uint64(uint64_t *val)
{
#ifdef __GNUC__
*val = __builtin_bswap16(*val);
*val = __builtin_bswap64(*val);
#else
uint64_t tval = *val;
*val = ((tval >> 56)) |