Skip to content
Snippets Groups Projects
Commit 18621421 authored by Dominik Loidolt's avatar Dominik Loidolt
Browse files

fix compiler warning

parent 93b18203
No related branches found
No related tags found
1 merge request!23Small bug fixes
...@@ -53,13 +53,13 @@ ...@@ -53,13 +53,13 @@
#undef __LITTLE_ENDIAN #undef __LITTLE_ENDIAN
#endif #endif
#if (__sparc__) #if defined __sparc__
#ifndef __BIG_ENDIAN #ifndef __BIG_ENDIAN
#define __BIG_ENDIAN 4321 #define __BIG_ENDIAN 4321
#endif #endif
#endif #endif
#if (__i386__ || __x86_64__) #if (defined __i386__ || defined __x86_64__)
#ifndef __LITTLE_ENDIAN #ifndef __LITTLE_ENDIAN
#define __LITTLE_ENDIAN 1234 #define __LITTLE_ENDIAN 1234
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment