aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 22:04:03 +0100
committerMax Kellermann <max@duempel.org>2013-01-02 22:16:05 +0100
commit8331de424a67b137cd83ce817da0fceec647dc2f (patch)
treeb5243fbff385d9732c683cb1efc64eec85f3189f /test
parent98dbdf72b3c35878494df4954a447cec250a835d (diff)
PlaylistInfo: rename class, use std::string
Diffstat (limited to 'test')
-rw-r--r--test/DumpDatabase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/DumpDatabase.cxx b/test/DumpDatabase.cxx
index f262a980..fc42ba14 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;
}