diff options
Diffstat (limited to 'mps/code/ref.c')
| -rw-r--r-- | mps/code/ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/ref.c b/mps/code/ref.c index a52fd60064b..fd11743cb1e 100644 --- a/mps/code/ref.c +++ b/mps/code/ref.c | |||
| @@ -27,7 +27,7 @@ Bool RankCheck(Rank rank) | |||
| 27 | 27 | ||
| 28 | Bool RankSetCheck(RankSet rankSet) | 28 | Bool RankSetCheck(RankSet rankSet) |
| 29 | { | 29 | { |
| 30 | CHECKL(rankSet < (1uL << RankLIMIT)); | 30 | CHECKL(rankSet < ((ULongest)1 << RankLIMIT)); |
| 31 | UNUSED(rankSet); /* <code/mpm.c#check.unused> */ | 31 | UNUSED(rankSet); /* <code/mpm.c#check.unused> */ |
| 32 | return TRUE; | 32 | return TRUE; |
| 33 | } | 33 | } |