mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 17:54:32 +03:00
Add braces to if -- conform with Pillow style.
This commit is contained in:
parent
0acf3514a1
commit
5390786c65
|
@ -156,8 +156,9 @@ check_buf_bits:
|
||||||
st->code >>= n;
|
st->code >>= n;
|
||||||
st->buf_bits_left -= n;
|
st->buf_bits_left -= n;
|
||||||
st->code_bits_left -= n;
|
st->code_bits_left -= n;
|
||||||
if (st->code_bits_left)
|
if (st->code_bits_left) {
|
||||||
goto check_buf_bits;
|
goto check_buf_bits;
|
||||||
|
}
|
||||||
switch (st->put_state) {
|
switch (st->put_state) {
|
||||||
case PUT_INIT_CLEAR:
|
case PUT_INIT_CLEAR:
|
||||||
goto get_first_byte;
|
goto get_first_byte;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user