diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-09-01 12:35:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 15:59:30 +0200 |
commit | 08277a45c33f2e96dcef9878c6dafdeac9a01597 (patch) | |
tree | 4d8adeb60adf84c1fe4a781cce6a6173d5116a23 /libavformat/msnwc_tcp.c | |
parent | 9b4badb09b3fa2f5ea665d94a1cb189df5ded318 (diff) | |
download | ffmpeg-08277a45c33f2e96dcef9878c6dafdeac9a01597.tar.gz |
lavf: add missing new line to some error messages
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/msnwc_tcp.c')
-rw-r--r-- | libavformat/msnwc_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/msnwc_tcp.c b/libavformat/msnwc_tcp.c index be0245560d..0ac1c30747 100644 --- a/libavformat/msnwc_tcp.c +++ b/libavformat/msnwc_tcp.c @@ -92,7 +92,7 @@ static int msnwc_tcp_read_header(AVFormatContext *ctx) while(avio_r8(pb) != HEADER_SIZE && !url_feof(pb)); if(url_feof(pb)) { - av_log(ctx, AV_LOG_ERROR, "Could not find valid start."); + av_log(ctx, AV_LOG_ERROR, "Could not find valid start.\n"); return -1; } |