diff options
author | Max Kellermann <max@duempel.org> | 2013-10-14 22:38:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-14 22:38:29 +0200 |
commit | 9508ea982b8feb012a9d354a7c80005421a854bc (patch) | |
tree | 4c50648506d2ad1bcc5ebbf93138b62074310840 /src/SongUpdate.cxx | |
parent | 47d655ea7f0ed9c26ceba4767ef6aa82e434d129 (diff) | |
download | mpd-9508ea982b8feb012a9d354a7c80005421a854bc.tar.gz mpd-9508ea982b8feb012a9d354a7c80005421a854bc.tar.xz mpd-9508ea982b8feb012a9d354a7c80005421a854bc.zip |
fs/Path: add method IsAbsolute()
Diffstat (limited to '')
-rw-r--r-- | src/SongUpdate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx index 4c5f35c78..98a58c53e 100644 --- a/src/SongUpdate.cxx +++ b/src/SongUpdate.cxx @@ -47,7 +47,7 @@ Song::LoadFile(const char *path_utf8, Directory *parent) Song *song; bool ret; - assert((parent == NULL) == g_path_is_absolute(path_utf8)); + assert((parent == NULL) == Path::IsAbsoluteUTF8(path_utf8)); assert(!uri_has_scheme(path_utf8)); assert(strchr(path_utf8, '\n') == NULL); |