summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-19 03:05:09 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-19 03:05:09 +0100
commit8b43b0e8b6c7672e0494d45aa5912f7359d26e83 (patch)
tree50e9b36d6974539818291b6276da743f01c00093 /ffmpeg.c
parent873dac50f5c8f08b574ecc63899b1924f29bf153 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index cad6a1b692..eed778a91e 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