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

Commit e53a0032 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix typo in return value" am: 46055309 am: 42c5bc96 am: 1816240d...

Merge "Fix typo in return value" am: 46055309 am: 42c5bc96 am: 1816240d am: 87b781f8 am: 29fc6fba

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/2063327



Change-Id: I0a7d3c2c184cc823d25ea178f673bd2257d4ec2e
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 9d6af18a 29fc6fba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -760,7 +760,7 @@ int vendor_tag_descriptor_cache_get_tag_type(uint32_t tag,
    Mutex::Autolock al(sLock);
    if (sGlobalVendorTagDescriptorCache == NULL) {
        ALOGE("%s: Vendor tag descriptor cache not initialized.", __FUNCTION__);
        return VENDOR_TAG_NAME_ERR;
        return VENDOR_TAG_TYPE_ERR;
    }
    return sGlobalVendorTagDescriptorCache->getTagType(tag, id);
}