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

Commit ee65cf47 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role)
Browse files

[automerger] [RTT] ParcelableRttResults parcel code fix am: e1e5a240 am:...

[automerger] [RTT] ParcelableRttResults parcel code fix am: e1e5a240 am: 5f4d9350 am: 8d2d052b am: af9f48b7

Change-Id: I5a6d8519fc77c96d2df7afc58c1d45af57250e8b
parents 28764528 af9f48b7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -766,8 +766,8 @@ public class RttManager {
                    }
                    dest.writeByte(result.LCR.id);
                    if (result.LCR.id != (byte) 0xFF) {
                        dest.writeInt((byte) result.LCR.data.length);
                        dest.writeByte(result.LCR.id);
                        dest.writeByte((byte) result.LCR.data.length);
                        dest.writeByteArray(result.LCR.data);
                    }
                    dest.writeByte(result.secure ? (byte) 1 : 0);
                }