diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-07 22:21:31 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-07 22:21:31 -0600 |
| commit | 06227c5420ce8eeef7bd44406a395188c61e1703 (patch) | |
| tree | c18c25b31413479e63fec92f61067b95759fc3b0 /kjs/nodes.cpp | |
| parent | ce5d3d7fd554b9832a69350cffa8d79c5002753e (diff) | |
| parent | 70d7c59d2ac9ad3718f92a20c07937d3b6cfb928 (diff) | |
| download | tdelibs-06227c5420ce8eeef7bd44406a395188c61e1703.tar.gz tdelibs-06227c5420ce8eeef7bd44406a395188c61e1703.zip | |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'kjs/nodes.cpp')
| -rw-r--r-- | kjs/nodes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kjs/nodes.cpp b/kjs/nodes.cpp index c6ee18bf1..6bb6cfaae 100644 --- a/kjs/nodes.cpp +++ b/kjs/nodes.cpp @@ -154,10 +154,10 @@ void Node::finalCheck() fprintf(stderr, "Node::finalCheck(): list 0\n"); return; } - fprintf( stderr, "Node::finalCheck(): list count : %d\n", (int)s_nodes->size() ); + fprintf( stderr, "[nodes] Node::finalCheck(): list count : %d\n", (int)s_nodes->size() ); std::list<Node *>::iterator it = s_nodes->begin(); for ( uint i = 0; it != s_nodes->end() ; ++it, ++i ) - fprintf( stderr, "[%d] Still having node %p (%s) (refcount %d)\n", i, (void*)*it, typeid( **it ).name(), (*it)->refcount ); + fprintf( stderr, "[nodes] [%d] Still having node %p (%s) (refcount %d)\n", i, (void*)*it, typeid( **it ).name(), (*it)->refcount ); delete s_nodes; s_nodes = 0L; } |
