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/rtpdec.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/rtpdec.c')
-rw-r--r-- | libavformat/rtpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 0be047cd49..98f6595132 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -771,7 +771,7 @@ int ff_parse_fmtp(AVStream *stream, PayloadContext *data, const char *p, int value_size = strlen(p) + 1; if (!(value = av_malloc(value_size))) { - av_log(stream, AV_LOG_ERROR, "Failed to allocate data for FMTP."); + av_log(stream, AV_LOG_ERROR, "Failed to allocate data for FMTP.\n"); return AVERROR(ENOMEM); } |