Browse Source

fix memory zone build error which caused by rbtree interface change

hanfeng 14 years ago
parent
commit
2e93f9a6c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/datasrc/memory_datasrc.cc

+ 1 - 1
src/lib/datasrc/memory_datasrc.cc

@@ -192,7 +192,7 @@ struct MemoryZone::MemoryZoneImpl {
         // Get the node
         // Get the node
         DomainNode* node(NULL);
         DomainNode* node(NULL);
         FindState state(options);
         FindState state(options);
-        NodeChain<Domain> node_path;
+        RBTreeNodeChain<Domain> node_path;
         switch (domains_.find(name, &node, node_path, zonecutCallback, &state)) {
         switch (domains_.find(name, &node, node_path, zonecutCallback, &state)) {
             case DomainTree::PARTIALMATCH:
             case DomainTree::PARTIALMATCH:
                 if (state.zonecut_node_ != NULL) {
                 if (state.zonecut_node_ != NULL) {