diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-19 14:26:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-19 14:26:40 +0200 |
commit | 22c0585a00d4adb8bbdccf1c0ac1122b651e5d63 (patch) | |
tree | 972c3a357b76a2fef67bcf9c25a73d16a0bb4a1a | |
parent | 3668701f96005f4f7fc3145c800911e39351c132 (diff) | |
download | ffmpeg-22c0585a00d4adb8bbdccf1c0ac1122b651e5d63.tar.gz |
avformat/http: Fix 2 typos
Found-by: wm4
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index dca1213511..02153d5792 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -946,7 +946,7 @@ static int http_buf_read(URLContext *h, uint8_t *buf, int size) if (!len && (!s->willclose || s->chunksize < 0) && s->filesize >= 0 && s->off < s->filesize) { 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 ); return AVERROR(EIO); |