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/mpc.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/mpc.c')
-rw-r--r-- | libavcodec/mpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpc.c b/libavcodec/mpc.c index 596a5e9f34..764afd65d3 100644 --- a/libavcodec/mpc.c +++ b/libavcodec/mpc.c @@ -36,7 +36,7 @@ static DECLARE_ALIGNED_16(MPA_INT, mpa_window[512]); -void ff_mpc_init() +void ff_mpc_init(void) { ff_mpa_synth_init(mpa_window); } |