From 26b746db49ab0dcaaf5a700d0fc055e5188dcc70 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 9 Sep 2011 19:31:17 +0200 Subject: [PATCH] linux-user: fix TARGET_RLIM_INFINITY declaration Signed-off-by: Matthias Braun Signed-off-by: Riku Voipio --- linux-user/syscall_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 15c44d45a8..1bc54c7480 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -690,7 +690,7 @@ struct target_rlimit { #elif defined(TARGET_MIPS) || defined(TARGET_SPARC) #define TARGET_RLIM_INFINITY 0x7fffffffUL #else -#define TARGET_RLIM_INFINITY ((target_ulong)~0UL) +#define TARGET_RLIM_INFINITY ((abi_ulong)-1) #endif #if defined(TARGET_MIPS)