diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/hbitmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/hbitmap.c b/util/hbitmap.c index a0df5d3591..d93683128b 100644 --- a/util/hbitmap.c +++ b/util/hbitmap.c @@ -126,7 +126,8 @@ unsigned long hbitmap_iter_skip_words(HBitmapIter *hbi) * The index of this word's least significant set bit provides * the low-order bits. */ - pos = (pos << BITS_PER_LEVEL) + bitops_ctzl(cur); + assert(cur); + pos = (pos << BITS_PER_LEVEL) + ctzl(cur); hbi->cur[i] = cur & (cur - 1); /* Set up next level for iteration. */ |