David Rose 24 anni fa
parent
commit
8c22cad702
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      panda/src/graph/nodeRelation.cxx

+ 2 - 2
panda/src/graph/nodeRelation.cxx

@@ -628,14 +628,14 @@ attach() {
 
   if (parent_connection == (NodeConnection *)NULL) {
     graph_cat.error()
-      << "Attempt to attach " << _parent << " simultaneously to more than "
+      << "Attempt to attach " << *_parent << " simultaneously to more than "
       << max_node_graphs << " different graph types.\n";
     nassertv(false);
   }
 
   if (child_connection == (NodeConnection *)NULL) {
     graph_cat.error()
-      << "Attempt to attach " << _child << " simultaneously to more than "
+      << "Attempt to attach " << *_child << " simultaneously to more than "
       << max_node_graphs << " different graph types.\n";
     nassertv(false);
   }