summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2020-01-24 14:46:31 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-01-24 14:46:31 +0000
commita694718658a8137b5b26efdfa40cad9da61f37c4 (patch)
treee9c2c44225df57306f7441c2f4dab51468d4d371
parented24259707be91640a1b96a5bf65913388d6dbe1 (diff)
parent0ade85457d84aa6d5553a0fc1680c630e9917451 (diff)
Merge "Fix the type error in the IntegrityCheckResultReported proto. Note that this change is submitted just an hour ago and there are no record on it. The error occured because of the refactoring from int to long during the time the review took place."
-rw-r--r--cmds/statsd/src/atoms.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index 4c26786d18e3..795062675f3f 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -8082,7 +8082,7 @@ message UserspaceRebootReported {
message IntegrityCheckResultReported {
optional string package_name = 1;
optional string app_certificate_hash = 2;
- optional int32 version_code = 3;
+ optional int64 version_code = 3;
optional string installer_package_name = 4;
enum Response {
UNKNOWN = 0;