summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/tta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tta.c b/libavformat/tta.c
index 663cd1b6e9..a3709437ee 100644
--- a/libavformat/tta.c
+++ b/libavformat/tta.c
@@ -75,7 +75,7 @@ static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap)
return AVERROR_NOMEM;
for (i = 0; i < c->totalframes; i++)
- c->seektable[i] = get_le32(&s->pb);
+ c->seektable[i] = get_le32(&s->pb);
url_fskip(&s->pb, 4); // seektable crc
st = av_new_stream(s, 0);