aboutsummaryrefslogtreecommitdiffstats
path: root/src/replayGain.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/replayGain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/replayGain.c b/src/replayGain.c
index b1c7e92d4..296b321cd 100644
--- a/src/replayGain.c
+++ b/src/replayGain.c
@@ -31,7 +31,7 @@ static int replayGainState = REPLAYGAIN_OFF;
static float replayGainPreamp = 1.0;
-void initReplayGainState() {
+void initReplayGainState(void) {
ConfigParam * param = getConfigParam(CONF_REPLAYGAIN);
if(!param) return;
@@ -85,7 +85,7 @@ static float computeReplayGainScale(float gain, float peak) {
return(scale);
}
-ReplayGainInfo * newReplayGainInfo() {
+ReplayGainInfo * newReplayGainInfo(void) {
ReplayGainInfo * ret = malloc(sizeof(ReplayGainInfo));
ret->albumGain = 0.0;