summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-31 22:06:52 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-31 22:06:52 +0000
commita7354e7925e65c203b83a60c3b651f8b93cb9cab (patch)
treed25594b308ef043987dfb9bd560d165d7d71f8da
parent29164ccbccc83a7e5ec335acf5c37fde21649386 (diff)
downloadrockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.tar.gz
rockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.zip
Cosmetic change of a comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29666 a1c6a512-1295-4272-9138-f99709370657
-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)
long convert_gain(long gain)
{
/* Don't allow unreasonably low or high gain changes.
- * Our math code can't handle it properly anyway. :)
- */
+ * Our math code can't handle it properly anyway. :) */
gain = MAX(gain, FP_MIN);
gain = MIN(gain, FP_MAX);