css: Fixed typo in PRINT_TREE debug code

This commit is contained in:
Alexander Larsson 2012-11-28 12:13:09 +01:00
parent 1bfa6593c8
commit 63cb467e06

View File

@ -1815,7 +1815,7 @@ _gtk_css_selector_tree_builder_build (GtkCssSelectorTreeBuilder *builder)
GString *s = g_string_new ("");
_gtk_css_selector_tree_print (tree, s, "");
g_print ("%s", s->str);
g_string_free (s);
g_string_free (s, TRUE);
}
#endif