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

Commit 9db7b817 authored by Ray Essick's avatar Ray Essick
Browse files

Fix cut/paste typo confusing double/string

Bug: 119623662
Test: logcat
parent c74fafab
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) {