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

Commit a2786b13 authored by You Kim's avatar You Kim Committed by Steve Kondik
Browse files

Typo in CameraParameters::set

Change-Id: I05a6a6adb02c326ae406be24471bd7290c481b5b
Typo: 'key' --> 'value'
parent 4a66581d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -610,7 +610,7 @@ void CameraParameters::set(const char *key, const char *value)
        return;
    }

    if (strchr(value, '=') || strchr(key, ';')) {
    if (strchr(value, '=') || strchr(value, ';')) {
        //XXX ALOGE("Value \"%s\"contains invalid character (= or ;)", value);
        return;
    }