Add missing 'void' keyword to parameterless function declarations.

Originally committed as revision 16436 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2009-01-05 13:57:43 +00:00
parent 5fd9c8b94a
commit c47d146be8
4 changed files with 5 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ static VLC j_ac_vlc[2][2][8]; //[quant<13],[intra/inter],[select]
static VLC j_dc_vlc[2][8]; //[quant], [select]
static VLC j_orient_vlc[2][4]; //[quant], [select]
static void x8_vlc_init(){
static void x8_vlc_init(void){
int i;
#define init_ac_vlc(dst,src) \