commit | 7d9bd921a8f92338ca44a6ee368c58450da594df | [log] [tgz] |
---|---|---|
author | Alex Deymo <deymo@google.com> | Mon Sep 14 12:33:10 2015 -0700 |
committer | Alex Deymo <deymo@google.com> | Mon Sep 14 12:33:10 2015 -0700 |
tree | ee160a8495bdec6c9ecc069f60b2f87ceff5abd7 | |
parent | a240d4a5c2808c698b52242a93d4bcd5c4516feb [diff] [blame] |
Include missing REPLACE_XZ switch case. The operation was included in the .proto file but not in this switch case. Bug: 23179128 Test: emerge-link update_engine Change-Id: I99887a1dbcf6237d268bcd0c117d3766f113df64
diff --git a/payload_generator/annotated_operation.cc b/payload_generator/annotated_operation.cc index 3f28c8d..3fbea2c 100644 --- a/payload_generator/annotated_operation.cc +++ b/payload_generator/annotated_operation.cc
@@ -64,6 +64,8 @@ return "ZERO"; case InstallOperation::DISCARD: return "DISCARD"; + case InstallOperation::REPLACE_XZ: + return "REPLACE_XZ"; } return "UNK"; }