CVSROOT: /home/cvs
Module name: linux
Changes by: ths@ftp.linux-mips.org 05/07/08 21:10:17
Modified files:
arch/mips/mm : tlbex.c
Log message:
Those literals are long.
diff -urN linux/arch/mips/mm/tlbex.c linux/arch/mips/mm/tlbex.c
--- linux/arch/mips/mm/tlbex.c 2005/06/30 10:51:01 1.26
+++ linux/arch/mips/mm/tlbex.c 2005/07/08 20:10:17 1.27
@@ -487,7 +487,7 @@
static __init int __attribute__((unused)) in_compat_space_p(long addr)
{
/* Is this address in 32bit compat space? */
- return (((addr) & 0xffffffff00000000) == 0xffffffff00000000);
+ return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L);
}
static __init int __attribute__((unused)) rel_highest(long val)
|