From 38d2de9f4c5b4de22ddbef3e483a39a6c69170d2 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Sat, 6 Feb 2021 10:09:55 +0000 Subject: [PATCH] vkd3d: Fix warning in query logging Signed-off-by: Joshua Ashton --- libs/vkd3d/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vkd3d/command.c b/libs/vkd3d/command.c index 9ffe0128..2fe87da0 100644 --- a/libs/vkd3d/command.c +++ b/libs/vkd3d/command.c @@ -2687,7 +2687,7 @@ static bool d3d12_command_list_disable_query(struct d3d12_command_list *list, } } - WARN("Query (%#"PRIx64",%u) not active.\n", (uint64_t)heap, index); + WARN("Query (%p, %u) not active.\n", heap, index); return true; }