Fix lead comment for count_trailing_zero_bits

* src/data.c (count_trailing_zero_bits): Fix comment to match code.
This commit is contained in:
Paul Eggert 2018-06-24 23:21:01 -07:00
parent b419f27a43
commit 4c3306e12f

View file

@ -3311,8 +3311,8 @@ pre_value (bool precondition, int value)
return precondition ? value : 0;
}
/* Compute the number of trailing zero bits in val. If val is zero,
return the number of bits in val. */
/* Compute the number of trailing zero bits in VAL. VAL must not be zero. */
static int
count_trailing_zero_bits (bits_word val)
{