diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-31 22:06:52 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-31 22:06:52 +0000 |
| commit | a7354e7925e65c203b83a60c3b651f8b93cb9cab (patch) | |
| tree | d25594b308ef043987dfb9bd560d165d7d71f8da | |
| parent | 29164ccbccc83a7e5ec335acf5c37fde21649386 (diff) | |
| download | rockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.zip rockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.tar.gz rockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.tar.bz2 rockbox-a7354e7925e65c203b83a60c3b651f8b93cb9cab.tar.xz | |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/replaygain.c b/apps/replaygain.c index 02be033..7875e06 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); |