summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-01-31 18:34:39 +0000
committerThom Johansen <thomj@rockbox.org>2006-01-31 18:34:39 +0000
commit147cfe9cb91f7c9e0a00eb9287d1938c97f1162f (patch)
tree010b8ef863cf36070098912168b95306e0a4f022
parent321e480234e9ca77a62d8909b57dbb4597ca9f72 (diff)
downloadrockbox-147cfe9cb91f7c9e0a00eb9287d1938c97f1162f.tar.gz
rockbox-147cfe9cb91f7c9e0a00eb9287d1938c97f1162f.zip
Misleading parameter name.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8508 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/eq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/eq.h b/apps/eq.h
index f7616387b4..c4eb5f16c0 100644
--- a/apps/eq.h
+++ b/apps/eq.h
@@ -35,7 +35,7 @@ void eq_pk_coefs(unsigned long cutoff, unsigned long Q, long db, long *c);
void eq_ls_coefs(unsigned long cutoff, unsigned long Q, long db, long *c);
void eq_hs_coefs(unsigned long cutoff, unsigned long Q, long db, long *c);
void eq_filter(long **x, struct eqfilter *f, unsigned num,
- unsigned samples, unsigned shift);
+ unsigned channels, unsigned shift);
#endif