$NetBSD: patch-ao,v 1.1 2000/02/03 16:01:15 abs Exp $

--- linuxdoom-1.10/m_swap.c.orig	Mon Dec 22 20:43:51 1997
+++ linuxdoom-1.10/m_swap.c	Thu Feb  3 01:33:55 2000
@@ -31,8 +31,8 @@
 #include "m_swap.h"
 
 
-// Not needed with big endian.
-#ifndef __BIG_ENDIAN__
+// Only needed with big endian.
+#ifdef __BIG_ENDIAN__
 
 // Swap 16bit, that is, MSB and LSB byte.
 unsigned short SwapSHORT(unsigned short x)
@@ -42,7 +42,7 @@
 }
 
 // Swapping 32bit.
-unsigned long SwapLONG( unsigned long x)
+unsigned int SwapLONG( unsigned int x)
 {
     return
 	(x>>24)
