Commit c790ae02 authored by Clément Bœsch's avatar Clément Bœsch Committed by Clément Bœsch

ffmpeg: add missing return carriage in error message.

parent e00b2d28
...@@ -887,7 +887,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) ...@@ -887,7 +887,7 @@ static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
} }
if (i == nb_input_streams) { if (i == nb_input_streams) {
av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for " 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); in->filter_ctx->name);
exit_program(1); exit_program(1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment