diff options
author | Max Kellermann <max@duempel.org> | 2014-07-11 20:22:22 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-11 20:22:35 +0200 |
commit | a8a85143f6e0b0fdc2467722d057a4b8526f7e69 (patch) | |
tree | 812821690167e4e3e6bd8409b7fd4a3a19e9385d /src/command/QueueCommands.cxx | |
parent | e2cc328eef4d7c19a6bc7755779babe88ff51105 (diff) |
QueueCommands: make "result" more local
Diffstat (limited to 'src/command/QueueCommands.cxx')
-rw-r--r-- | src/command/QueueCommands.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/command/QueueCommands.cxx b/src/command/QueueCommands.cxx index a21eb75f0..a20b24132 100644 --- a/src/command/QueueCommands.cxx +++ b/src/command/QueueCommands.cxx @@ -43,7 +43,6 @@ CommandResult handle_add(Client &client, gcc_unused int argc, char *argv[]) { char *uri = argv[1]; - PlaylistResult result; if (memcmp(uri, "file:///", 8) == 0) { const char *path_utf8 = uri + 7; @@ -59,7 +58,7 @@ handle_add(Client &client, gcc_unused int argc, char *argv[]) if (!client_allow_file(client, path_fs, error)) return print_error(client, error); - result = client.partition.AppendFile(path_utf8); + auto result = client.partition.AppendFile(path_utf8); return print_playlist_result(client, result); } @@ -70,7 +69,7 @@ handle_add(Client &client, gcc_unused int argc, char *argv[]) return CommandResult::ERROR; } - result = client.partition.AppendURI(uri); + auto result = client.partition.AppendURI(uri); return print_playlist_result(client, result); } |