1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

Fix wrong assertion message string

You just cannot print dom_string structs with %s.
This commit is contained in:
Jonas Fonseca 2005-12-13 16:33:50 +01:00 committed by Jonas Fonseca
parent be3223b38e
commit d1635d6970

View File

@ -236,7 +236,7 @@ init_dom_node_(unsigned char *file, int line,
int sort = (type == DOM_NODE_ATTRIBUTE);
int index;
assertm(list, "Adding %s to bad parent %s",
assertm(list, "Adding node to bad parent",
get_dom_node_type_name(node->type),
get_dom_node_type_name(parent->type));