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

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

Merge "Fix the ISurfaceComposer onTransact switch." into gingerbread

parents 0716ea14 58bac9e7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -247,13 +247,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);
    }