aboutsummaryrefslogtreecommitdiff
path: root/src/mixer
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-10-20 21:05:11 +0200
committerMax Kellermann <max@duempel.org>2009-10-20 21:05:11 +0200
commitbc4266bef8b4997332de706be28904d8b8f7d593 (patch)
treed613262e3d780497a412bdf83c928665c554b293 /src/mixer
parentbc629c8a3e5f90c827cc3ad2d896d2d0737e3d62 (diff)
pulse: renamed source files
Diffstat (limited to 'src/mixer')
-rw-r--r--src/mixer/pulse_mixer_plugin.c (renamed from src/mixer/pulse_mixer.c)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixer/pulse_mixer.c b/src/mixer/pulse_mixer_plugin.c
index 5d9ce047..54b08281 100644
--- a/src/mixer/pulse_mixer.c
+++ b/src/mixer/pulse_mixer_plugin.c
@@ -206,7 +206,7 @@ static struct mixer *
pulse_mixer_init(const struct config_param *param)
{
struct pulse_mixer *pm = g_new(struct pulse_mixer,1);
- mixer_init(&pm->base, &pulse_mixer);
+ mixer_init(&pm->base, &pulse_mixer_plugin);
pm->online = false;
@@ -372,7 +372,7 @@ pulse_mixer_set_volume(struct mixer *mixer, unsigned volume)
return true;
}
-const struct mixer_plugin pulse_mixer = {
+const struct mixer_plugin pulse_mixer_plugin = {
.init = pulse_mixer_init,
.finish = pulse_mixer_finish,
.open = pulse_mixer_open,