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

Commit 2d700947 authored by Andreas Huber's avatar Andreas Huber Committed by Android (Google) Code Review
Browse files

Merge "Fix a format string that triggered a compile-time warning in OMXCodec.cpp"

parents a7265fe0 9fb64a25
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1838,7 +1838,7 @@ status_t OMXCodec::allocateOutputBuffersFromNativeWindow() {
        }
    }

    LOGV("native_window_set_usage usage=0x%x", usage);
    LOGV("native_window_set_usage usage=0x%lx", usage);
    err = native_window_set_usage(
            mNativeWindow.get(), usage | GRALLOC_USAGE_HW_TEXTURE | GRALLOC_USAGE_EXTERNAL_DISP);
    if (err != 0) {