From 8e051743c5c593b1a8d461843045d7463a59e437 Mon Sep 17 00:00:00 2001 From: Howard Ro Date: Fri, 20 Mar 2020 15:07:20 -0700 Subject: [PATCH] Change sint to int in atoms.proto sint32 is not supported in statsd Bug: 151110217 Test: m statsd Change-Id: Ic711cee06a15a957fd4e25c4c01176cc44598cb2 --- cmds/statsd/src/atoms.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 713e92354fb4b..0e7fc91fe23cc 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3007,7 +3007,7 @@ message AppCrashOccurred { optional string process_name = 3; // The pid if available. -1 means not available. - optional sint32 pid = 4; + optional int32 pid = 4; optional string package_name = 5; @@ -3043,7 +3043,7 @@ message WTFOccurred { optional string process_name = 3; // The pid if available. -1 means not available. - optional sint32 pid = 4; + optional int32 pid = 4; optional android.server.ErrorSource error_source = 5; }