test: pixels: Revert accidental change

websockets
Andri Yngvason 2023-03-23 10:18:28 +00:00
parent 1081ff35cd
commit 2cefc7febb
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
#define swap32(x) (((x >> 24) & 0xff) | ((x << 8) & 0xff0000) | \ #define swap32(x) (((x >> 24) & 0xff) | ((x << 8) & 0xff0000) | \
((x >> 8) & 0xff00) | ((x << 24) & 0xff000000)) ((x >> 8) & 0xff00) | ((x << 24) & 0xff000000))
#if 0 //__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
#define u32_le(x) x #define u32_le(x) x
#else #else
#define u32_le(x) swap32(x) #define u32_le(x) swap32(x)