linux-user: fix TARGET_RLIM_INFINITY declaration

Signed-off-by: Matthias Braun <matze@braunis.de>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
Matthias Braun 2011-09-09 19:31:17 +02:00 committed by Riku Voipio
parent 9f60639b84
commit 26b746db49
1 changed files with 1 additions and 1 deletions

View File

@ -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)