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

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

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

* commit '7877cb80':
  Img_utils: Fix "unused" variables
parents 0e4b8c2d 7877cb80
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*/