summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-12-01 00:19:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-12-01 00:19:44 +0000
commit90901860c21468d6e9ae437c2bacb099c7bd3acf (patch)
treefec0acd1392c465c3717ff4b2aa9b911f1667b1c /ffmpeg.c
parent7fffc879798bbbad647ad2b1b30f26855bf2abda (diff)
stupid code (casting of void*) found by checktree.sh
Originally committed as revision 11117 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 217c371dc6..a080dc9906 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1399,7 +1399,7 @@ static int av_encode(AVFormatContext **output_files,
int key;
int want_sdp = 1;
- file_table= (AVInputFile*) av_mallocz(nb_input_files * sizeof(AVInputFile));
+ file_table= av_mallocz(nb_input_files * sizeof(AVInputFile));
if (!file_table)
goto fail;