Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HansKristian-Work/vkd3d-proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ashton <joshua@froggi.es>2021-02-06 13:09:55 +0300
committerJoshua Ashton <joshua@froggi.es>2021-02-06 13:09:55 +0300
commitd1d1f210aedbd8da7d1dc66c4045535aa7949756 (patch)
tree6bb9995b10fe6d01e46b4dde8e52e937462e0a50
parent6e9bd284818338f691fcae63a1b30b4a407319b0 (diff)
vkd3d: Fix warning in query loggingptr-log-fix
Signed-off-by: Joshua Ashton <joshua@froggi.es>
-rw-r--r--libs/vkd3d/command.c2
1 files changed, 1 insertions, 1 deletions
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;
}