aboutsummaryrefslogtreecommitdiffstats
path: root/src/FilterConfig.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-19 16:29:56 +0200
committerMax Kellermann <max@duempel.org>2013-10-19 16:29:56 +0200
commit03cddd0acf481f34709e7a1b061d4d451b09285a (patch)
tree78a2282b718802544548282e235e007ccc39a59b /src/FilterConfig.hxx
parent04a737e04cccaf6c7b609ad45992bbf60b037904 (diff)
downloadmpd-03cddd0acf481f34709e7a1b061d4d451b09285a.tar.gz
mpd-03cddd0acf481f34709e7a1b061d4d451b09285a.tar.xz
mpd-03cddd0acf481f34709e7a1b061d4d451b09285a.zip
FilterConfig: return bool
Diffstat (limited to 'src/FilterConfig.hxx')
-rw-r--r--src/FilterConfig.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FilterConfig.hxx b/src/FilterConfig.hxx
index 3e6553b8d..6b074b930 100644
--- a/src/FilterConfig.hxx
+++ b/src/FilterConfig.hxx
@@ -35,9 +35,9 @@ class Error;
* @param chain the chain to append filters on
* @param spec the filter chain specification
* @param error_r space to return an error description
- * @return the number of filters which were successfully added
+ * @return true on success
*/
-unsigned int
+bool
filter_chain_parse(Filter &chain, const char *spec, Error &error);
#endif