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

Commit 46055309 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix typo in return value"

parents 44a9fc56 08077902
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);
}