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

Commit c36f3abc authored by Ryan Prichard's avatar Ryan Prichard Committed by Gerrit Code Review
Browse files

Merge "Make int32_t conversion explicit" into main

parents 1f50dead 8d37bb0c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1953,7 +1953,8 @@ c2_status_t Codec2Client::Component::createBlockPool(
        std::shared_ptr<Codec2Client::Configurable>* configurable) {
    if (mAidlBase) {
        c2_aidl::IComponent::BlockPool aidlBlockPool;
        ::ndk::ScopedAStatus transStatus = mAidlBase->createBlockPool(id, &aidlBlockPool);
        ::ndk::ScopedAStatus transStatus = mAidlBase->createBlockPool(static_cast<int32_t>(id),
                                                                      &aidlBlockPool);
        c2_status_t status = GetC2Status(transStatus, "createBlockPool");
        if (status != C2_OK) {
            return status;