diff options
author | Max Kellermann <max@duempel.org> | 2013-10-18 12:24:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-18 12:24:47 +0200 |
commit | 58fe352fdaff93737d067a0cb90d83ebd5cbe180 (patch) | |
tree | 31ebf5e04b4cbc85258d0b8a059a5cf323427836 /src/PlaylistDatabase.cxx | |
parent | b105093dcdfc3f860a2d8f0c84bc94997efa50c4 (diff) |
util/StringUtil: rename strchug_fast_c() to strchug_fast()
Overload the name.
Diffstat (limited to 'src/PlaylistDatabase.cxx')
-rw-r--r-- | src/PlaylistDatabase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistDatabase.cxx b/src/PlaylistDatabase.cxx index 3810d8866..a6d15e755 100644 --- a/src/PlaylistDatabase.cxx +++ b/src/PlaylistDatabase.cxx @@ -59,7 +59,7 @@ playlist_metadata_load(TextFile &file, PlaylistVector &pv, const char *name, } *colon++ = 0; - value = strchug_fast_c(colon); + value = strchug_fast(colon); if (strcmp(line, "mtime") == 0) pm.mtime = strtol(value, nullptr, 10); |