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:
parent
8af5e8b497
commit
094f2ca895
@ -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);
|
||||
|
@ -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!
|
||||
|
Loading…
Reference in New Issue
Block a user