From c47d146be8cbfe41df8c4f1ce3b5bb993909514c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 5 Jan 2009 13:57:43 +0000 Subject: Add missing 'void' keyword to parameterless function declarations. Originally committed as revision 16436 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/x86/simple_idct_mmx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/x86/simple_idct_mmx.c') diff --git a/libavcodec/x86/simple_idct_mmx.c b/libavcodec/x86/simple_idct_mmx.c index 6306fcb..5786744 100644 --- a/libavcodec/x86/simple_idct_mmx.c +++ b/libavcodec/x86/simple_idct_mmx.c @@ -80,7 +80,8 @@ DECLARE_ALIGNED(8, static const int16_t, coeffs[])= { }; #if 0 -static void unused_var_killer(){ +static void unused_var_killer(void) +{ int a= wm1010 + d40000; temp[0]=a; } -- cgit v1.1