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

Commit 191367e5 authored by Andreas Gampe's avatar Andreas Gampe
Browse files

Img_utils: Fix "unused" variables

For build-system CFLAGS clean-up, fix unused variables.

Change-Id: I589a73780f022271fce40f64305b29a84c382e5f
parent e4f6ecb9
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*/