diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-19 03:05:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-19 03:05:09 +0100 |
commit | 8b43b0e8b6c7672e0494d45aa5912f7359d26e83 (patch) | |
tree | 50e9b36d6974539818291b6276da743f01c00093 /ffmpeg.c | |
parent | 873dac50f5c8f08b574ecc63899b1924f29bf153 (diff) | |
download | ffmpeg-8b43b0e8b6c7672e0494d45aa5912f7359d26e83.tar.gz |
ffmpeg: fix variable type for end char
fixes warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |