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

Commit 7877cb80 authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Img_utils: Fix "unused" variables"

parents d56a953a 191367e5
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*/