1
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:33:46 +01:00

Add missing 'void' to parameterless function declaration.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28129 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-12-11 21:45:11 +00:00
parent 8af5e8b497
commit 094f2ca895
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#ifdef CONFIG_FAKE_MONO
void MP3_Init(int fakemono);
#else
void MP3_Init();
void MP3_Init(void);
#endif
int MP3_Open(char *filename, int buffsize);
void MP3_SeekFrame(int num, int dir);

View File

@ -403,7 +403,7 @@ void (*dct64_MMX_func)(short *, short *, real *);
#ifdef CONFIG_FAKE_MONO
void MP3_Init(int fakemono){
#else
void MP3_Init(){
void MP3_Init(void){
#endif
//gCpuCaps.hasMMX=gCpuCaps.hasMMX2=gCpuCaps.hasSSE=0; // for testing!