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

Commit 69bdcb9b authored by Mathias Agopian's avatar Mathias Agopian
Browse files

Fix a debug statement in BufferMapper

parent f9cd64bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ status_t BufferMapper::lock(buffer_handle_t handle,
{
    status_t err = mAllocMod->lock(mAllocMod, handle, usage,
            bounds.left, bounds.top, bounds.width(), bounds.height(), vaddr);
    LOGW_IF(err, "unlock(...) failed %d (%s)", err, strerror(-err));
    LOGW_IF(err, "lock(...) failed %d (%s)", err, strerror(-err));
    return err;
}