avformat/bonk: remove unused variable

This commit is contained in:
Paul B Mahol 2023-01-25 18:46:21 +01:00
parent 6f79f0971e
commit 2c3107c3e9
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static int bonk_read_header(AVFormatContext *s)
AVStream *st;
int ret;
for (int i = 0; !avio_feof(s->pb); i++) {
while (!avio_feof(s->pb)) {
const int b = avio_r8(s->pb);
if (!b) {
uint32_t t;