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

Commit abf9e2b6 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

am e30dc38b: am 7877cb80: Merge "Img_utils: Fix "unused" variables"

* commit 'e30dc38b':
  Img_utils: Fix "unused" variables
parents dbd6e0a9 e30dc38b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ status_t FileInput::close() {
        ret = BAD_VALUE;
    }
    mOpen = false;
    return OK;
    return ret;
}

} /*namespace img_utils*/
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ status_t FileOutput::close() {
        ret = BAD_VALUE;
    }
    mOpen = false;
    return OK;
    return ret;
}

} /*namespace img_utils*/