mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 879840: B2G RIL - correct CB activation code. r=yoshi
This commit is contained in:
parent
ed5b90246d
commit
ed30739e16
@ -1944,7 +1944,8 @@ let RIL = {
|
||||
setGsmSmsBroadcastActivation: function setGsmSmsBroadcastActivation(activate) {
|
||||
Buf.newParcel(REQUEST_GSM_SMS_BROADCAST_ACTIVATION);
|
||||
Buf.writeUint32(1);
|
||||
Buf.writeUint32(activate ? 1 : 0);
|
||||
// See hardware/ril/include/telephony/ril.h, 0 - Activate, 1 - Turn off.
|
||||
Buf.writeUint32(activate ? 0 : 1);
|
||||
Buf.sendParcel();
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user