Fix style error in dkboolreader.h

Change-Id: I2fac92e356ed1c78039d63e9f8757e7df3d88756
This commit is contained in:
Brennan Shacklett 2016-08-15 11:18:40 -07:00
Родитель 05a62c0a0d
Коммит 1b5b67f6ce
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -57,8 +57,8 @@ const uint8_t *aom_dk_reader_find_end(struct aom_dk_reader *r);
static INLINE ptrdiff_t aom_dk_reader_tell(const struct aom_dk_reader *r) {
const size_t bits_read = (r->buffer - r->buffer_start) * CHAR_BIT;
const int count = (r->count < LOTS_OF_BITS) ? r->count
: r->count - LOTS_OF_BITS;
const int count =
(r->count < LOTS_OF_BITS) ? r->count : r->count - LOTS_OF_BITS;
return bits_read + BD_VALUE_SIZE - (count + CHAR_BIT);
}