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

Commit ad2b78fa 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 c52ca2f6 238bec1c
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);
    }