diff options
Diffstat (limited to '')
-rw-r--r-- | src/replayGain.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/replayGain.h b/src/replayGain.h index 789a25ce9..c8a6965e0 100644 --- a/src/replayGain.h +++ b/src/replayGain.h @@ -32,17 +32,17 @@ typedef struct _ReplayGainInfo { float trackGain; float trackPeak; - /* used internally by mpd, to mess with it*/ + /* used internally by mpd, to mess with it */ float scale; } ReplayGainInfo; -ReplayGainInfo * newReplayGainInfo(); +ReplayGainInfo *newReplayGainInfo(); void freeReplayGainInfo(ReplayGainInfo * info); void initReplayGainState(); -void doReplayGain(ReplayGainInfo * info, char * buffer, int bufferSize, - AudioFormat * format); +void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize, + AudioFormat * format); #endif |