summaryrefslogtreecommitdiffstats
path: root/maemo/alsa-dsp.c
diff options
context:
space:
mode:
authorDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-11-21 02:20:36 +0100
committerDiego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-11-21 13:07:09 +0100
commit021c884548f8ed502fec114a1efd22679d718a19 (patch)
treeadee497f5b371155ae04a9dac23c7ed653b6a8e3 /maemo/alsa-dsp.c
parent9d65155c28d4a47022a4de7e604187b8b2ad2137 (diff)
Mark as static the functions not used outside their unit.
This allows the compiler to assume more about their interface, if at all possible. Signed-off-by: Diego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>
Diffstat (limited to 'maemo/alsa-dsp.c')
-rw-r--r--maemo/alsa-dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/maemo/alsa-dsp.c b/maemo/alsa-dsp.c
index ff5d273..414dbdb 100644
--- a/maemo/alsa-dsp.c
+++ b/maemo/alsa-dsp.c
@@ -745,9 +745,9 @@ SND_PCM_PLUGIN_DEFINE_FUNC(alsa_dsp)
}
-void alsa_dsp_descructor(void) __attribute__ ((destructor));
+static void alsa_dsp_descructor(void) __attribute__ ((destructor));
-void alsa_dsp_descructor(void)
+static void alsa_dsp_descructor(void)
{
DENTER();
DPRINT("alsa dsp destructor\n");