diff options
author | Max Kellermann <max@musicpd.org> | 2018-02-24 22:13:58 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-02-24 22:44:42 +0100 |
commit | cd48d981b53d5639bad17a58ee8bbd914714d99b (patch) | |
tree | 1bb59f04266b6af527aaa1324fded1089e6e03b3 /src | |
parent | 774d26b982aa317f98d2ff6a5cee80f6e2babb33 (diff) |
storage/nfs: use PathTraitsFS::const_pointer_type
Diffstat (limited to 'src')
-rw-r--r-- | src/storage/plugins/NfsStorage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/plugins/NfsStorage.cxx b/src/storage/plugins/NfsStorage.cxx index e7e5eb828..6ef6266aa 100644 --- a/src/storage/plugins/NfsStorage.cxx +++ b/src/storage/plugins/NfsStorage.cxx @@ -296,7 +296,7 @@ NfsStorage::GetInfo(const char *uri_utf8, gcc_unused bool follow) gcc_pure static bool -SkipNameFS(const char *name) noexcept +SkipNameFS(PathTraitsFS::const_pointer_type name) noexcept { return name[0] == '.' && (name[1] == 0 || |