1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-09 14:14:39 +02:00

avformat/http: Fix 2 typos

Found-by: wm4
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-04-19 14:26:40 +02:00
parent 3668701f96
commit 22c0585a00

View File

@ -946,7 +946,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size)
if (!len && (!s->willclose || s->chunksize < 0) && if (!len && (!s->willclose || s->chunksize < 0) &&
s->filesize >= 0 && s->off < s->filesize) { s->filesize >= 0 && s->off < s->filesize) {
av_log(h, AV_LOG_ERROR, av_log(h, AV_LOG_ERROR,
"Streams ends prematurly at %"PRId64", should be %"PRId64"\n", "Stream ends prematurely at %"PRId64", should be %"PRId64"\n",
s->off, s->filesize s->off, s->filesize
); );
return AVERROR(EIO); return AVERROR(EIO);