diff options
author | Alex Deymo <deymo@google.com> | 2015-08-17 11:29:22 -0700 |
---|---|---|
committer | Alex Deymo <deymo@google.com> | 2015-08-17 11:33:32 -0700 |
commit | 583f7b9e67f932f9bba7ae0ac84dce3d31107cfa (patch) | |
tree | 4fd5ca86b580c3943423e4c1f7f077e64a7aa165 /payload_generator/graph_utils.cc | |
parent | 2a57bfa299f6409e930ed11dda26421272d1bf5f (diff) | |
parent | ac6246ae239518a27ab4e89ee01ba1b1d76d440f (diff) |
Sync update_engine from chromiumos/platform2.
The update_engine project was synced from chromium gerrit instance with
the latest changes.You can find the old version here:
https://chromium.googlesource.com/chromiumos/platform2/+/830d80acf26c8232d4b6e14916b7dad543bcf5ec/update_engine
BUG=b/23084607
Diffstat (limited to 'payload_generator/graph_utils.cc')
-rw-r--r-- | payload_generator/graph_utils.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/payload_generator/graph_utils.cc b/payload_generator/graph_utils.cc index 91665606..265177fc 100644 --- a/payload_generator/graph_utils.cc +++ b/payload_generator/graph_utils.cc @@ -114,12 +114,12 @@ void DumpGraph(const Graph& graph) { for (Graph::size_type i = 0, e = graph.size(); i != e; ++i) { LOG(INFO) << i << (graph[i].valid ? "" : "-INV") - << ": " << graph[i].file_name - << ": " << InstallOperationTypeName(graph[i].op.type()); + << ": " << graph[i].aop.name + << ": " << InstallOperationTypeName(graph[i].aop.op.type()); LOG(INFO) << " src_extents:"; - DumpExtents(graph[i].op.src_extents(), 4); + DumpExtents(graph[i].aop.op.src_extents(), 4); LOG(INFO) << " dst_extents:"; - DumpExtents(graph[i].op.dst_extents(), 4); + DumpExtents(graph[i].aop.op.dst_extents(), 4); LOG(INFO) << " out edges:"; DumpOutEdges(graph[i].out_edges); } |