summaryrefslogtreecommitdiff
path: root/desktop/unx/source/splashx.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/unx/source/splashx.c')
-rw-r--r--desktop/unx/source/splashx.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/unx/source/splashx.c b/desktop/unx/source/splashx.c
index 6e7088b42ca4..4e3a8bdddfdb 100644
--- a/desktop/unx/source/splashx.c
+++ b/desktop/unx/source/splashx.c
@@ -308,11 +308,10 @@ static void create_pixmap()
int bytes_per_line = image->bytes_per_line;
int bpp = image->bits_per_pixel;
int byte_order = image->byte_order;
- int machine_byte_order;
#if defined( _LITTLE_ENDIAN )
- machine_byte_order = LSBFirst;
+ int machine_byte_order = LSBFirst;
#elif defined( _BIG_ENDIAN )
- machine_byte_order = MSBFirst;
+ int machine_byte_order = MSBFirst;
#else
{
fprintf( stderr, "Unsupported machine endianity.\n" );