diff options
author | Max Kellermann <max@duempel.org> | 2013-01-04 00:02:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-04 00:02:09 +0100 |
commit | 9d312ab208f797a69c8366f4a961d6cb3228cecb (patch) | |
tree | db4f22c858684ab16f0a8010207b9fbf46119985 /src/OtherCommands.cxx | |
parent | 06be0a199722e945701d720fe40068c6de6c8f40 (diff) | |
download | mpd-9d312ab208f797a69c8366f4a961d6cb3228cecb.tar.gz mpd-9d312ab208f797a69c8366f4a961d6cb3228cecb.tar.xz mpd-9d312ab208f797a69c8366f4a961d6cb3228cecb.zip |
PlaylistFile: reuse classes PlaylistInfo and PlaylistVector
.. instead of rolling own classes.
Diffstat (limited to 'src/OtherCommands.cxx')
-rw-r--r-- | src/OtherCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OtherCommands.cxx b/src/OtherCommands.cxx index 32d51c42e..9de616759 100644 --- a/src/OtherCommands.cxx +++ b/src/OtherCommands.cxx @@ -57,7 +57,7 @@ extern "C" { #include <string.h> static void -print_spl_list(Client *client, const PlaylistFileList &list) +print_spl_list(Client *client, const PlaylistVector &list) { for (const auto &i : list) { client_printf(client, "playlist: %s\n", i.name.c_str()); |