diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2012-06-04 09:09:13 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-06-04 09:10:07 +0200 |
commit | c790ae02654422f3fd8742c147f988e444ee3dd3 (patch) | |
tree | 93233972014bc8e41cb22b5c4b196027df52f032 | |
parent | e00b2d284e492e4f40dcf41392518b7a7d652901 (diff) | |
download | ffmpeg-c790ae02654422f3fd8742c147f988e444ee3dd3.tar.gz |
ffmpeg: add missing return carriage in error message.
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -887,7 +887,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) } if (i == nb_input_streams) { av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for " - "unlabeled input pad %d on filter %s", in->pad_idx, + "unlabeled input pad %d on filter %s\n", in->pad_idx, in->filter_ctx->name); exit_program(1); } |