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

Commit c40d87ea authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix cut/paste typo confusing double/string"

parents 2373df79 9db7b817
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ bool MediaAnalyticsItem::getDouble(MediaAnalyticsItem::Attr name, double *value)
// caller responsible for the returned string
bool MediaAnalyticsItem::getCString(MediaAnalyticsItem::Attr name, char **value) {
    Prop *prop = findProp(name);
    if (prop == NULL || prop->mType != kTypeDouble) {
    if (prop == NULL || prop->mType != kTypeCString) {
        return false;
    }
    if (value != NULL) {