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

Commit 278bfee0 authored by George Burgess IV's avatar George Burgess IV
Browse files

vr: fix an incorrect format string.

size_t should use %zu, not %d. This fixes a warning from clang.

Bug: 64487164
Test: mma. Warning is gone.
Change-Id: Id43cac8948091c91249bdd68e2e5b1a1fcdab814
parent 3f05602a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -429,7 +429,7 @@ pdx::Status<void> BufferHubQueue::FreeAllBuffers() {
      if (!status) {
        ALOGE(
            "ProducerQueue::FreeAllBuffers: Failed to remove buffer at "
            "slot=%d.",
            "slot=%zu.",
            slot);
        last_error = status.error_status();
      }