Add braces to if -- conform with Pillow style.

This commit is contained in:
Ray Gardner 2021-03-25 16:46:55 -06:00
parent 0acf3514a1
commit 5390786c65

View File

@ -156,8 +156,9 @@ check_buf_bits:
st->code >>= n;
st->buf_bits_left -= n;
st->code_bits_left -= n;
if (st->code_bits_left)
if (st->code_bits_left) {
goto check_buf_bits;
}
switch (st->put_state) {
case PUT_INIT_CLEAR:
goto get_first_byte;