git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
873dac5
)
ffmpeg: fix variable type for end char
author
Michael Niedermayer
<michaelni@gmx.at>
Wed, 19 Nov 2014 02:05:09 +0000
(
03:05
+0100)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 19 Nov 2014 02:05:09 +0000
(
03:05
+0100)
fixes warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
ffmpeg.c
patch
|
blob
|
history
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
cad6a1b
..
eed778a
100644
(file)
--- 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