freedreno: Fix format string warning

Modifiers are uin64_t.

Signed-off-by: Kristian H. Kristensen <hoegsberg@google.com>
This commit is contained in:
Kristian H. Kristensen 2019-04-18 10:44:02 -07:00
parent 9c82a55efc
commit a90aa14f5a
1 changed files with 1 additions and 1 deletions

View File

@ -1069,7 +1069,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: %lx", handle->modifier);
DBG("bad modifier: %llx", handle->modifier);
goto fail;
}
debug_assert(screen->fill_ubwc_buffer_sizes);