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

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

Merge "BroadcastRadio/convert.cpp: fix compiler warning" into main

parents 9fe7c281 d8e46fe9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -350,7 +350,7 @@ static Rds RdsForRegion(bool rds, Region region) {
        case Region::ITU_2:
            return Rds::US;
        default:
            ALOGE("Unexpected region: %d", region);
            ALOGE("Unexpected region: %d", static_cast<int>(region));
            return Rds::NONE;
    }
}
@@ -365,7 +365,7 @@ static Deemphasis DeemphasisForRegion(Region region) {
        case Region::JAPAN:
            return Deemphasis::D50;
        default:
            ALOGE("Unexpected region: %d", region);
            ALOGE("Unexpected region: %d", static_cast<int>(region));
            return Deemphasis::D50;
    }
}