From 8b43b0e8b6c7672e0494d45aa5912f7359d26e83 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Wed, 19 Nov 2014 03:05:09 +0100 Subject: [PATCH] ffmpeg: fix variable type for end char fixes warning Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index cad6a1b6925..eed778a91ed 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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 -- GitLab