Skip to content
  • Rupert Swarbrick's avatar
    Fix operator order in obu.c · ca33a9b7
    Rupert Swarbrick authored
    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!
    ca33a9b7