aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistDatabase.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-18 12:24:09 +0200
committerMax Kellermann <max@duempel.org>2013-10-18 12:24:47 +0200
commit58fe352fdaff93737d067a0cb90d83ebd5cbe180 (patch)
tree31ebf5e04b4cbc85258d0b8a059a5cf323427836 /src/PlaylistDatabase.cxx
parentb105093dcdfc3f860a2d8f0c84bc94997efa50c4 (diff)
downloadmpd-58fe352fdaff93737d067a0cb90d83ebd5cbe180.tar.gz
mpd-58fe352fdaff93737d067a0cb90d83ebd5cbe180.tar.xz
mpd-58fe352fdaff93737d067a0cb90d83ebd5cbe180.zip
util/StringUtil: rename strchug_fast_c() to strchug_fast()
Overload the name.
Diffstat (limited to '')
-rw-r--r--src/PlaylistDatabase.cxx2
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);