diff options
author | Max Kellermann <max@duempel.org> | 2009-10-20 21:01:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-20 21:01:55 +0200 |
commit | c953d6409dffd476370ba639118cba97bcda2f35 (patch) | |
tree | 5920d5d03757ae9fd6fd753dcef7532d07bff96b /src/song_update.c | |
parent | 447e4d3583d3394a25f0fb186f50cea45dd7f797 (diff) | |
download | mpd-c953d6409dffd476370ba639118cba97bcda2f35.tar.gz mpd-c953d6409dffd476370ba639118cba97bcda2f35.tar.xz mpd-c953d6409dffd476370ba639118cba97bcda2f35.zip |
mapper, update, ...: use g_build_filename(), G_DIR_SEPARATOR, ...
Try to be as portable as possible, use GLib path name functions and
macros.
Diffstat (limited to '')
-rw-r--r-- | src/song_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song_update.c b/src/song_update.c index 4c1c69da2..cfef5861f 100644 --- a/src/song_update.c +++ b/src/song_update.c @@ -39,7 +39,7 @@ song_file_load(const char *path, struct directory *parent) struct song *song; bool ret; - assert((parent == NULL) == (*path == '/')); + assert((parent == NULL) == g_path_is_absolute(path)); assert(!uri_has_scheme(path)); assert(strchr(path, '\n') == NULL); |