diff options
author | Michael Terry <michael.terry@canonical.com> | 2014-03-03 11:23:29 -0500 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2014-03-03 11:23:29 -0500 |
commit | f8615b9d75069b11cda2c3c2356c59526f978dd4 (patch) | |
tree | 3d35c444c3b90f5feb0beaa1621405a8267394c0 /src | |
parent | 8e9a6e13e8f5cececc42e7d2b59beb75a0112739 (diff) | |
download | ayatana-indicator-sound-f8615b9d75069b11cda2c3c2356c59526f978dd4.tar.gz ayatana-indicator-sound-f8615b9d75069b11cda2c3c2356c59526f978dd4.tar.bz2 ayatana-indicator-sound-f8615b9d75069b11cda2c3c2356c59526f978dd4.zip |
Fix a typo
Diffstat (limited to 'src')
-rw-r--r-- | src/volume-control.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala index a735057..211bf0c 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -345,7 +345,7 @@ public class VolumeControl : Object try { var user_path_variant = yield accounts_proxy.call ("FindUserByName", new Variant ("(s)", username), DBusCallFlags.NONE, -1); string user_path; - user_path_variant.get ("(&s)", out user_path); + user_path_variant.get ("(o)", out user_path); return yield DBusProxy.create_for_bus (BusType.SYSTEM, DBusProxyFlags.NONE, null, "org.freedesktop.Accounts", user_path, "org.freedesktop.DBus.Properties"); } catch (GLib.Error e) { warning ("unable to find Accounts path for user %s: %s", username, e.message); |