uint -> unsigned int

This commit is contained in:
Bradley Bell 2003-02-14 03:49:02 +00:00
parent ecc171ac1a
commit cc9134c94f

View file

@ -11,7 +11,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#define SWAPINT(x) (((x)<<24) | (((uint)(x)) >> 24) | (((x) &0x0000ff00) << 8) | (((x) & 0x00ff0000) >> 8))
#define SWAPINT(x) (((x)<<24) | (((unsigned int)(x)) >> 24) | (((x) &0x0000ff00) << 8) | (((x) & 0x00ff0000) >> 8))
#define MAX_FILES 256