Fix: Invoke microphone_volume, not speaker

This commit is contained in:
Zhenhua Zhang 2009-11-11 21:32:07 +08:00 committed by Denis Kenzior
parent 7b9d72f2fe
commit 0825070655
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ static DBusMessage *cv_set_property(DBusConnection *conn, DBusMessage *msg,
cv->pending_volume = percent;
cv->pending = dbus_message_ref(msg);
cv->driver->speaker_volume(cv, percent, mv_set_callback, cv);
cv->driver->microphone_volume(cv, percent, mv_set_callback, cv);
return NULL;
} else if (g_str_equal(property, "Muted") == TRUE) {