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

@@ -1599,7 +1599,7 @@ QPEL_2TAP(avg_, 8, 3dnow)
#if 0
static void just_return() { return; }
static void just_return(void) { return; }
#endif
static void gmc_mmx(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy,