aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagFile.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-03-01 01:09:53 +0100
committerMax Kellermann <max@duempel.org>2015-03-01 01:09:53 +0100
commit7ce96585f5e0a5786f17d7996252b5c58e60d0ed (patch)
tree32cba161d309fb1a8afc303d6813c55c5c707233 /src/TagFile.cxx
parent41cc31c124686304f2ce7098c16ab27b5f88057e (diff)
downloadmpd-7ce96585f5e0a5786f17d7996252b5c58e60d0ed.tar.gz
mpd-7ce96585f5e0a5786f17d7996252b5c58e60d0ed.tar.xz
mpd-7ce96585f5e0a5786f17d7996252b5c58e60d0ed.zip
fs/Path: add method GetSuffix()
Type-safe wrapper for uri_get_suffix().
Diffstat (limited to 'src/TagFile.cxx')
-rw-r--r--src/TagFile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TagFile.cxx b/src/TagFile.cxx
index e4e9914e4..168be6063 100644
--- a/src/TagFile.cxx
+++ b/src/TagFile.cxx
@@ -87,7 +87,7 @@ tag_file_scan(Path path_fs, const tag_handler &handler, void *handler_ctx)
/* check if there's a suffix and a plugin */
- const char *suffix = uri_get_suffix(path_fs.c_str());
+ const char *suffix = path_fs.GetSuffix();
if (suffix == nullptr)
return false;