diff options
author | Max Kellermann <max@duempel.org> | 2014-01-30 22:17:35 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-30 22:17:35 +0100 |
commit | 6207a3f99976fe03e1e325833344e8859ab1fd92 (patch) | |
tree | 5581964515197fa8178aee5f668b963d8ff6bc8d | |
parent | 0bd01824f6b035e460e8821adf6913de3c78a3c4 (diff) |
PlaylistFile: narrow LoadPlaylistFileInfo() API to accept Path
-rw-r--r-- | src/PlaylistFile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx index 86100fcde..00e638c9a 100644 --- a/src/PlaylistFile.cxx +++ b/src/PlaylistFile.cxx @@ -137,8 +137,8 @@ playlist_errno(Error &error) static bool LoadPlaylistFileInfo(PlaylistInfo &info, - const AllocatedPath &parent_path_fs, - const AllocatedPath &name_fs) + const Path parent_path_fs, + const Path name_fs) { const char *name_fs_str = name_fs.c_str(); size_t name_length = strlen(name_fs_str); |