diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-30 18:38:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-30 18:38:25 +0000 |
commit | dc8a7c93d3381d7336c3dd37956bdb6e88c9eaf9 (patch) | |
tree | 83ddfde3d92c1c8ae6384b31a07fc37c13779afd /libavcodec/mlpdec.c | |
parent | f92a6c66ed2dfb4c421934984b1869b21cb961dc (diff) | |
download | ffmpeg-dc8a7c93d3381d7336c3dd37956bdb6e88c9eaf9.tar.gz |
Add missing void keyword to parameterless function declarations.
Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index f4323da542..a9f69488fc 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -141,7 +141,7 @@ static VLC huff_vlc[3]; /** Initialize static data, constant between all invocations of the codec. */ -static av_cold void init_static() +static av_cold void init_static(void) { INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, &ff_mlp_huffman_tables[0][0][1], 2, 1, |