===== plugin/space/bitmap.c 1.186 vs edited ===== --- 1.186/plugin/space/bitmap.c Wed Jan 19 18:52:52 2005 +++ edited/plugin/space/bitmap.c Mon Feb 7 16:18:37 2005 @@ -165,7 +165,7 @@ static int find_next_zero_bit_in_word(ulong_t word, int start_bit) { - ulong_t mask = 1 << start_bit; + ulong_t mask = 1UL << start_bit; int i = start_bit; while ((word & mask) != 0) { @@ -235,7 +235,7 @@ assert ("zam-965", start_bit < BITS_PER_LONG); assert ("zam-966", start_bit >= 0); - bit_mask = (1 << nr); + bit_mask = (1UL << nr); while (bit_mask != 0) { if (bit_mask & word)