OSDN Git Service

linux-user: fix 32-bit host breakage
authorAurelien Jarno <aurelien@aurel32.net>
Wed, 19 May 2010 16:30:53 +0000 (18:30 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Wed, 19 May 2010 16:39:11 +0000 (18:39 +0200)
Fix breakage introduced by commit 81bbe906c89b6b7af58a1eeb96ec5a0bfdc3386f.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
linux-user/syscall_defs.h

index 255e89c..6f5a0aa 100644 (file)
@@ -670,7 +670,7 @@ struct target_rlimit {
 };
 
 #if defined(TARGET_ALPHA)
-#define TARGET_RLIM_INFINITY   0x7ffffffffffffffful
+#define TARGET_RLIM_INFINITY   0x7fffffffffffffffull
 #elif defined(TARGET_MIPS) || defined(TARGET_SPARC)
 #define TARGET_RLIM_INFINITY   0x7fffffffUL
 #else