Skip to content

Fix operator order in obu.c

This code originally looked like "assert (init_bit_pos % 8 == 0)" and I changed it to use "& 7" to match the prevaling style. Unfortunately, "&" binds more weakly than "==". Oops!

Fixes issue #171 (closed)

Merge request reports