Show node pointer value when displaying a node tree

For easier debugging when using -debug-module, -debug-top etc
This commit is contained in:
William S Fulton 2015-10-10 15:19:52 +01:00
commit 8173c5935e

View file

@ -68,7 +68,7 @@ void Swig_print_node(Node *obj) {
Node *cobj;
print_indent(0);
Printf(stdout, "+++ %s ----------------------------------------\n", nodeType(obj));
Printf(stdout, "+++ %s - %p ----------------------------------------\n", nodeType(obj), obj);
ki = First(obj);
while (ki.key) {
String *k = ki.key;