Skip to content

Commit

Permalink
Date: Fri Jul 8 20:10:17 2005 +0000
Browse files Browse the repository at this point in the history
Those literals are long.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 04988d6 commit 3ef33e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/mm/tlbex.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ L_LA(_r3000_write_probe_fail)
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)
Expand Down

0 comments on commit 3ef33e6

Please sign in to comment.