From 094f2ca895b43ac79e1ee79dbd505a6434e9a7cd Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 11 Dec 2008 21:45:11 +0000 Subject: Add missing 'void' to parameterless function declaration. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28129 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mp3lib/mp3.h | 2 +- mp3lib/sr1.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'mp3lib') diff --git a/mp3lib/mp3.h b/mp3lib/mp3.h index daeda20856..d43b5f8bcb 100644 --- a/mp3lib/mp3.h +++ b/mp3lib/mp3.h @@ -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); diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c index 49feb45343..c5a0a1b9e7 100644 --- a/mp3lib/sr1.c +++ b/mp3lib/sr1.c @@ -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! -- cgit v1.2.3