diff options
author | Max Kellermann <max@duempel.org> | 2013-01-18 15:33:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-18 15:34:01 +0100 |
commit | 890151450663abd581cab56e853e8e713d822851 (patch) | |
tree | f4bf31e08d7483e0041333c6ebf69a468b48b975 /src/Partition.hxx | |
parent | 21fe376d1d9ffa6064cf89faab7860d443d9f7fd (diff) | |
download | mpd-890151450663abd581cab56e853e8e713d822851.tar.gz mpd-890151450663abd581cab56e853e8e713d822851.tar.xz mpd-890151450663abd581cab56e853e8e713d822851.zip |
Playlist, Song: clarify parameter encoding
Diffstat (limited to 'src/Partition.hxx')
-rw-r--r-- | src/Partition.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Partition.hxx b/src/Partition.hxx index 9efde274a..776f74e2a 100644 --- a/src/Partition.hxx +++ b/src/Partition.hxx @@ -43,9 +43,9 @@ struct Partition { playlist.Clear(pc); } - enum playlist_result AppendFile(const char *path_fs, + enum playlist_result AppendFile(const char *path_utf8, unsigned *added_id=nullptr) { - return playlist.AppendFile(pc, path_fs, added_id); + return playlist.AppendFile(pc, path_utf8, added_id); } enum playlist_result AppendURI(const char *uri_utf8, |