diff options
| author | Nathan Perry <avaglir@gmail.com> | 2018-08-13 19:52:07 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2018-08-13 19:52:07 -0400 |
| commit | 33d235f6d5c72919225c97f0a5c19a8e1be06571 (patch) | |
| tree | 62fe8e90902b623d3a68ea782ba03f302a709cab /src/commands/playback | |
| parent | 831a906e8e422ff2bf294e5496c3a6acef804d8e (diff) | |
remove a couple of unused mut modifiers
Diffstat (limited to 'src/commands/playback')
| -rw-r--r-- | src/commands/playback/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/playback/types.rs b/src/commands/playback/types.rs index b9e1778..2035bd9 100644 --- a/src/commands/playback/types.rs +++ b/src/commands/playback/types.rs @@ -123,7 +123,7 @@ impl PlayQueue { match handler { Some(handler) => { - let mut audio = handler.play_only(src); + let audio = handler.play_only(src); { audio.lock().volume(queue.volume); } |
