mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
freedreno: Fix warning on printing a uint64_t using %llx.
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
This commit is contained in:
parent
40dd28acc3
commit
db329260bf
1 changed files with 1 additions and 1 deletions
|
|
@ -1078,7 +1078,7 @@ fd_resource_from_handle(struct pipe_screen *pscreen,
|
|||
if (handle->modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED) {
|
||||
if (!is_supported_modifier(pscreen, tmpl->format,
|
||||
DRM_FORMAT_MOD_QCOM_COMPRESSED)) {
|
||||
DBG("bad modifier: %llx", handle->modifier);
|
||||
DBG("bad modifier: %"PRIx64, handle->modifier);
|
||||
goto fail;
|
||||
}
|
||||
debug_assert(screen->fill_ubwc_buffer_sizes);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue