diff options
Diffstat (limited to 'src/skill.h')
-rw-r--r-- | src/skill.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/skill.h b/src/skill.h index cfaeae8e..301baa8c 100644 --- a/src/skill.h +++ b/src/skill.h @@ -94,13 +94,13 @@ class Skill /* * printTree - * Print tree to stdout + * Print tree to stderr */ void printTree(const std::string &indent) { - std::cerr << indent << id << std::endl; - for (unsigned int i = 0; i < children.size(); i++) { - children[i]->printTree(indent + " "); - } + std::cerr << indent << id << std::endl; + for (unsigned int i = 0; i < children.size(); i++) { + children[i]->printTree(indent + " "); + } } }; |