diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-12-01 00:19:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-12-01 00:19:44 +0000 |
commit | 90901860c21468d6e9ae437c2bacb099c7bd3acf (patch) | |
tree | fec0acd1392c465c3717ff4b2aa9b911f1667b1c /ffmpeg.c | |
parent | 7fffc879798bbbad647ad2b1b30f26855bf2abda (diff) | |
download | ffmpeg-90901860c21468d6e9ae437c2bacb099c7bd3acf.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |