Merge "Fix bug while writing data to parcel in TelephonyHistogram.java" into nyc-mr1-dev

This commit is contained in:
Sanket Padawe
2016-06-07 20:52:58 +00:00
committed by Android (Google) Code Review

View File

@@ -274,7 +274,7 @@ public final class TelephonyHistogram implements Parcelable {
out.writeInt(minTimeMs);
out.writeInt(maxTimeMs);
out.writeInt(averageTimeMs);
out.writeLong(sampleCount);
out.writeInt(sampleCount);
if (initialTimings == null) {
out.writeInt(ABSENT);
} else {