summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-10-30 00:06:09 +0000
committerThom Johansen <thomj@rockbox.org>2007-10-30 00:06:09 +0000
commite9001ae514128ae2a243a11408d230c15ab6b2b8 (patch)
tree77ec7b6f8892d2e07febe3fcb10242227c17b846 /apps
parentdaf937422c17ea571b67e3ef7dae570369daa8a1 (diff)
downloadrockbox-e9001ae514128ae2a243a11408d230c15ab6b2b8.tar.gz
rockbox-e9001ae514128ae2a243a11408d230c15ab6b2b8.zip
Just because it's #if 0 doesn't make it inferior...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 305288fa77..4cade936b9 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -241,7 +241,7 @@ static inline long clip_sample(int32_t sample, int32_t min, int32_t range)
int32_t c = min;
if (sample > min)
c += range;
- sample = c
+ sample = c;
}
return sample;
}