diff options
author | Max Kellermann <max@duempel.org> | 2014-08-07 14:53:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-07 16:08:02 +0200 |
commit | 87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802 (patch) | |
tree | 9f2170889dfbfff90816d7d4eea7b19373ba213f /src/filter/plugins | |
parent | db6db517424e09bab9a12934e9df6807a7049926 (diff) | |
download | mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.tar.gz mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.tar.xz mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.zip |
util/StringUtil: rename strchug_fast() to StripLeft()
Diffstat (limited to 'src/filter/plugins')
-rw-r--r-- | src/filter/plugins/RouteFilterPlugin.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filter/plugins/RouteFilterPlugin.cxx b/src/filter/plugins/RouteFilterPlugin.cxx index 38c4ec43b..d4bb0be9c 100644 --- a/src/filter/plugins/RouteFilterPlugin.cxx +++ b/src/filter/plugins/RouteFilterPlugin.cxx @@ -142,11 +142,11 @@ RouteFilter::Configure(const config_param ¶m, Error &error) { // A cowardly default, just passthrough stereo const char *routes = param.GetBlockValue("routes", "0>0, 1>1"); while (true) { - routes = strchug_fast(routes); + routes = StripLeft(routes); char *endptr; const unsigned source = strtoul(routes, &endptr, 10); - endptr = strchug_fast(endptr); + endptr = StripLeft(endptr); if (endptr == routes || *endptr != '>') { error.Set(config_domain, "Malformed 'routes' specification"); @@ -163,10 +163,10 @@ RouteFilter::Configure(const config_param ¶m, Error &error) { if (source >= min_input_channels) min_input_channels = source + 1; - routes = strchug_fast(endptr + 1); + routes = StripLeft(endptr + 1); unsigned dest = strtoul(routes, &endptr, 10); - endptr = strchug_fast(endptr); + endptr = StripLeft(endptr); if (endptr == routes) { error.Set(config_domain, "Malformed 'routes' specification"); |