diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-19 18:30:53 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-19 18:39:11 +0200 |
commit | e476492e78d5872980f371663c1a8a89fb3ce149 (patch) | |
tree | 639379e8aa004b59ddd0921ebf72815f7dbe5cd1 /linux-user | |
parent | 0d5d46993840c1e6a04c1db38a554aad4ee83835 (diff) | |
download | qemu-e476492e78d5872980f371663c1a8a89fb3ce149.zip |
linux-user: fix 32-bit host breakage
Fix breakage introduced by commit 81bbe906c89b6b7af58a1eeb96ec5a0bfdc3386f.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 255e89cbd8..6f5a0aada8 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -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 |