Commit 8b43b0e8 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: fix variable type for end char

fixes warning
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 873dac50
......@@ -1496,7 +1496,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
av_bprintf(&buf_script, "drop_frames=%d\n", nb_frames_drop);
if (print_stats || is_last_report) {
const char *end = is_last_report ? '\n' : '\r';
const char end = is_last_report ? '\n' : '\r';
if (print_stats==1 && AV_LOG_INFO > av_log_get_level()) {
fprintf(stderr, "%s %c", buf, end);
} else
......
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