aboutsummaryrefslogtreecommitdiffstats
path: root/src/replayGain.h
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2006-08-20 00:50:44 +0000
committerAvuton Olrich <avuton@gmail.com>2006-08-20 00:50:44 +0000
commitf79a70d1b9bab78fca515ac9142607ce2414e333 (patch)
tree9b851a6298a000e1feee859f430c9ccc5c297ddd /src/replayGain.h
parent9caade4eb11bc930f618650918db8b60b912c961 (diff)
downloadmpd-f79a70d1b9bab78fca515ac9142607ce2414e333.tar.gz
mpd-f79a70d1b9bab78fca515ac9142607ce2414e333.tar.xz
mpd-f79a70d1b9bab78fca515ac9142607ce2414e333.zip
Fix warnings for -Wmissing-prototypes
Add -Wmissing-prototypes if compiling with gcc Static where possible git-svn-id: https://svn.musicpd.org/mpd/trunk@4657 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/replayGain.h')
-rw-r--r--src/replayGain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/replayGain.h b/src/replayGain.h
index 74c28c33f..219944f2c 100644
--- a/src/replayGain.h
+++ b/src/replayGain.h
@@ -38,11 +38,11 @@ typedef struct _ReplayGainInfo {
float scale;
} ReplayGainInfo;
-ReplayGainInfo *newReplayGainInfo();
+ReplayGainInfo *newReplayGainInfo(void);
void freeReplayGainInfo(ReplayGainInfo * info);
-void initReplayGainState();
+void initReplayGainState(void);
void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize,
AudioFormat * format);