summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/replaygain.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/replaygain.c b/apps/replaygain.c
index 02be033657..7875e06e72 100644
--- a/apps/replaygain.c
+++ b/apps/replaygain.c
@@ -121,8 +121,7 @@ static long fp_atof(const char* s, int precision)
121long convert_gain(long gain) 121long convert_gain(long gain)
122{ 122{
123 /* Don't allow unreasonably low or high gain changes. 123 /* Don't allow unreasonably low or high gain changes.
124 * Our math code can't handle it properly anyway. :) 124 * Our math code can't handle it properly anyway. :) */
125 */
126 gain = MAX(gain, FP_MIN); 125 gain = MAX(gain, FP_MIN);
127 gain = MIN(gain, FP_MAX); 126 gain = MIN(gain, FP_MAX);
128 127