summaryrefslogtreecommitdiff
path: root/xps/xps_resource.c
diff options
context:
space:
mode:
Diffstat (limited to 'xps/xps_resource.c')
-rw-r--r--xps/xps_resource.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xps/xps_resource.c b/xps/xps_resource.c
index 099f378d..aa3cdc75 100644
--- a/xps/xps_resource.c
+++ b/xps/xps_resource.c
@@ -141,7 +141,7 @@ xps_free_resource_dictionary(xps_document *doc, xps_resource *dict)
}
void
-xps_debug_resource_dictionary(xps_resource *dict)
+xps_print_resource_dictionary(xps_resource *dict)
{
while (dict)
{
@@ -151,7 +151,7 @@ xps_debug_resource_dictionary(xps_resource *dict)
if (dict->parent)
{
printf("PARENT = {\n");
- xps_debug_resource_dictionary(dict->parent);
+ xps_print_resource_dictionary(dict->parent);
printf("}\n");
}
dict = dict->next;