summaryrefslogtreecommitdiff
path: root/lib/rbcodec
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-04-29 14:47:01 -0400
committerMichael Sevakis <jethead71@rockbox.org>2012-04-29 14:47:01 -0400
commit23b5f3e5e1ce19d6d872afe737e8924488d7d58b (patch)
tree93894830a8b1a858d1f4fbeb748c33c781f8d761 /lib/rbcodec
parent4928810354e0d467c5c52221b21cf64a264946b3 (diff)
Make compressor_update static.
Change-Id: Ic29242b4c397e82c2bee3808492a2d0a9ffebbe6
Diffstat (limited to 'lib/rbcodec')
-rw-r--r--lib/rbcodec/dsp/compressor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/dsp/compressor.c b/lib/rbcodec/dsp/compressor.c
index 1816bfef9c..8441cd6457 100644
--- a/lib/rbcodec/dsp/compressor.c
+++ b/lib/rbcodec/dsp/compressor.c
@@ -42,7 +42,7 @@ static int32_t release_gain IBSS_ATTR; /* S7.24 format */
/** COMPRESSOR UPDATE
* Called via the menu system to configure the compressor process */
-bool compressor_update(const struct compressor_settings *settings)
+static bool compressor_update(const struct compressor_settings *settings)
{
/* make settings values useful */
int threshold = settings->threshold;