summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xine-utils/xmlparser.c4
-rw-r--r--src/xine-utils/xmlparser.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/xine-utils/xmlparser.c b/src/xine-utils/xmlparser.c
index fe78e8e88..38e01fc19 100644
--- a/src/xine-utils/xmlparser.c
+++ b/src/xine-utils/xmlparser.c
@@ -672,10 +672,6 @@ int xml_parser_build_tree_with_options(xml_node_t **root_node, int flags) {
return res;
}
-int xml_parser_build_tree_relaxed(xml_node_t **root_node, int relaxed) {
- return xml_parser_build_tree_with_options (root_node, relaxed ? XML_PARSER_RELAXED : 0);
-}
-
int xml_parser_build_tree(xml_node_t **root_node) {
return xml_parser_build_tree_with_options (root_node, 0);
}
diff --git a/src/xine-utils/xmlparser.h b/src/xine-utils/xmlparser.h
index 364cc4c2b..420f2c36c 100644
--- a/src/xine-utils/xmlparser.h
+++ b/src/xine-utils/xmlparser.h
@@ -71,7 +71,6 @@ typedef struct xml_node_s {
void xml_parser_init(const char * buf, int size, int mode) XINE_PROTECTED;
int xml_parser_build_tree(xml_node_t **root_node) XINE_PROTECTED;
-int xml_parser_build_tree_relaxed(xml_node_t **root_node, int relaxed) XINE_PROTECTED;
int xml_parser_build_tree_with_options(xml_node_t **root_node, int flags) XINE_PROTECTED;
void xml_parser_free_tree(xml_node_t *root_node) XINE_PROTECTED;