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/playlist | |
parent | b105093dcdfc3f860a2d8f0c84bc94997efa50c4 (diff) | |
download | mpd-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 'src/playlist')
-rw-r--r-- | src/playlist/ExtM3uPlaylistPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist/ExtM3uPlaylistPlugin.cxx b/src/playlist/ExtM3uPlaylistPlugin.cxx index 177e8857d..c6f6e5bf7 100644 --- a/src/playlist/ExtM3uPlaylistPlugin.cxx +++ b/src/playlist/ExtM3uPlaylistPlugin.cxx @@ -85,7 +85,7 @@ extm3u_parse_tag(const char *line) /* 0 means unknown duration */ duration = 0; - name = strchug_fast_c(endptr + 1); + name = strchug_fast(endptr + 1); if (*name == 0 && duration == 0) /* no information available; don't allocate a tag object */ |