mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-utils: Use PRIuPTR for SIZE_T variables in debug traces.
This commit is contained in:
committed by
Alexandre Julliard
parent
51cdddb961
commit
2f9906ee90
Notes:
Alexandre Julliard
2024-02-06 23:43:11 +01:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/635
@@ -309,7 +309,8 @@ HRESULT WINAPI D3DReflect(const void *data, SIZE_T data_size, REFIID iid, void *
|
||||
struct d3d12_reflection *object;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("data %p, data_size %lu, iid %s, reflection %p.\n", data, data_size, debugstr_guid(iid), reflection);
|
||||
TRACE("data %p, data_size %"PRIuPTR", iid %s, reflection %p.\n",
|
||||
data, (uintptr_t)data_size, debugstr_guid(iid), reflection);
|
||||
|
||||
if (!IsEqualGUID(iid, &IID_ID3D12ShaderReflection))
|
||||
{
|
||||
|
Reference in New Issue
Block a user