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

Commit cc866edc authored by Mathias Agopian's avatar Mathias Agopian Committed by Android (Google) Code Review
Browse files

Merge "Fix the ISurfaceComposer onTransact switch."

parents 946d54fa 151f2f5a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -266,13 +266,13 @@ status_t BnSurfaceComposer::onTransact(
            int32_t mode = data.readInt32();
            status_t res = turnElectronBeamOff(mode);
            reply->writeInt32(res);
        }
        } break;
        case TURN_ELECTRON_BEAM_ON: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            int32_t mode = data.readInt32();
            status_t res = turnElectronBeamOn(mode);
            reply->writeInt32(res);
        }
        } break;
        default:
            return BBinder::onTransact(code, data, reply, flags);
    }