diff options
author | Michal Ratajsky <[email protected]> | 2014-10-31 22:00:03 +0100 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-10-31 22:00:03 +0100 |
commit | dc19f6dfa6b7c3fe951b6d5e7f3b77080802fb74 (patch) | |
tree | 64fbd59de4c86b98689237cef5b04fdbc626d44b | |
parent | 20afadff90fb6a866d3e361b2b294a67775da95e (diff) | |
download | libmatemixer-dc19f6dfa6b7c3fe951b6d5e7f3b77080802fb74.tar.bz2 libmatemixer-dc19f6dfa6b7c3fe951b6d5e7f3b77080802fb74.tar.xz |
oss: Fix debugging message
-rw-r--r-- | backends/oss/oss-switch.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/backends/oss/oss-switch.c b/backends/oss/oss-switch.c index 8e32281..682814b 100644 --- a/backends/oss/oss-switch.c +++ b/backends/oss/oss-switch.c @@ -129,7 +129,6 @@ oss_switch_load (OssSwitch *swtch) { OssSwitchOption *option; gint recsrc; - gint devnum; gint ret; g_return_if_fail (OSS_IS_SWITCH (swtch)); @@ -163,9 +162,8 @@ oss_switch_load (OssSwitch *swtch) list = list->next; } - g_debug ("Switch %s has unknown device %d as the active option", - mate_mixer_switch_get_name (MATE_MIXER_SWITCH (swtch)), - devnum); + g_debug ("Switch %s has an unknown device as the active option", + mate_mixer_switch_get_name (MATE_MIXER_SWITCH (swtch))); /* OSS shouldn't let a non-record device be selected, let's step in and select * something reasonable instead... */ |