Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e051743 authored by Howard Ro's avatar Howard Ro
Browse files

Change sint to int in atoms.proto

sint32 is not supported in statsd

Bug: 151110217
Test: m statsd
Change-Id: Ic711cee06a15a957fd4e25c4c01176cc44598cb2
parent 18ee16a6
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -3007,7 +3007,7 @@ message AppCrashOccurred {
    optional string process_name = 3;
    optional string process_name = 3;


    // The pid if available. -1 means not available.
    // The pid if available. -1 means not available.
    optional sint32 pid = 4;
    optional int32 pid = 4;


    optional string package_name = 5;
    optional string package_name = 5;


@@ -3043,7 +3043,7 @@ message WTFOccurred {
    optional string process_name = 3;
    optional string process_name = 3;


    // The pid if available. -1 means not available.
    // The pid if available. -1 means not available.
    optional sint32 pid = 4;
    optional int32 pid = 4;


    optional android.server.ErrorSource error_source = 5;
    optional android.server.ErrorSource error_source = 5;
}
}