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

Commit ec7a7d80 authored by Pavan Chikkala's avatar Pavan Chikkala
Browse files

audio: Modified atoi to atoll to convert large Numeric values

Change-Id: I0e9a8efe28c46f9f885648ddcc1bc8b2b36fd0b7
parent 5e5e7806
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -449,7 +449,7 @@ void audio_extn_dolby_set_dmid(struct audio_device *adev)
        return;

    property_get("dmid",c_dmid,"0");
    i_dmid = atoi(c_dmid);
    i_dmid = atoll(c_dmid);

    ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
    if (!ctl) {