diff options
author | Michal Ratajsky <[email protected]> | 2014-07-25 23:59:10 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-07-25 23:59:10 +0200 |
commit | e369a047e3a43bd149fbce0af475bdef853aaf1a (patch) | |
tree | 904e67580d5188e95b52a735d9de88e1103a6e8d | |
parent | 59a9aabf7b66e130f68b797c5a3674798fae437b (diff) | |
download | libmatemixer-e369a047e3a43bd149fbce0af475bdef853aaf1a.tar.bz2 libmatemixer-e369a047e3a43bd149fbce0af475bdef853aaf1a.tar.xz |
Fix return value
-rw-r--r-- | libmatemixer/matemixer-stream-control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmatemixer/matemixer-stream-control.c b/libmatemixer/matemixer-stream-control.c index 19d35a1..388308e 100644 --- a/libmatemixer/matemixer-stream-control.c +++ b/libmatemixer/matemixer-stream-control.c @@ -337,7 +337,7 @@ mate_mixer_stream_control_get_balance (MateMixerStreamControl *ctl) "balance", &balance, NULL); - return 0.0f; + return balance; } gboolean |