ck_rhs: Remove unnecessary parentheses.

ck_pring
Samy Al Bahra 11 years ago
parent 6d26a2b4da
commit ddab0f1820

@ -342,7 +342,7 @@ ck_rhs_map_probe_next(struct ck_rhs_map *map,
offset = (offset &~ map->offset_mask) + ((offset + 1) & map->offset_mask);
return offset;
} else
return ((offset + probes) & map->mask);
return (offset + probes) & map->mask;
}
static inline unsigned long

Loading…
Cancel
Save