diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 22:04:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-02 22:16:05 +0100 |
commit | 8331de424a67b137cd83ce817da0fceec647dc2f (patch) | |
tree | b5243fbff385d9732c683cb1efc64eec85f3189f /test/DumpDatabase.cxx | |
parent | 98dbdf72b3c35878494df4954a447cec250a835d (diff) | |
download | mpd-8331de424a67b137cd83ce817da0fceec647dc2f.tar.gz mpd-8331de424a67b137cd83ce817da0fceec647dc2f.tar.xz mpd-8331de424a67b137cd83ce817da0fceec647dc2f.zip |
PlaylistInfo: rename class, use std::string
Diffstat (limited to '')
-rw-r--r-- | test/DumpDatabase.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/DumpDatabase.cxx b/test/DumpDatabase.cxx index f262a9808..fc42ba147 100644 --- a/test/DumpDatabase.cxx +++ b/test/DumpDatabase.cxx @@ -62,10 +62,10 @@ DumpSong(song &song, GError **) } static bool -DumpPlaylist(const playlist_metadata &playlist, +DumpPlaylist(const PlaylistInfo &playlist, const directory &directory, GError **) { - cout << "P " << directory.path << "/" << playlist.name << endl; + cout << "P " << directory.path << "/" << playlist.name.c_str() << endl; return true; } |