1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

d3dxof: Don't cast ptrdiff_t to ULONG in traces, use %I instead.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-04-12 20:28:10 +02:00 committed by Alexandre Julliard
parent 74adbac296
commit ae9266992a

View file

@ -274,8 +274,8 @@ HRESULT parse_header(parse_buffer * buf, BYTE ** decomp_buffer_ptr)
}
if ((decomp_buffer - *decomp_buffer_ptr) != decomp_file_size)
ERR("Size of all decompressed chunks (%lu) does not match decompressed file size (%lu).\n",
(DWORD)(decomp_buffer - *decomp_buffer_ptr), decomp_file_size);
ERR("Size of all decompressed chunks (%Iu) does not match decompressed file size (%lu).\n",
decomp_buffer - *decomp_buffer_ptr, decomp_file_size);
/* Use decompressed data */
buf->buffer = *decomp_buffer_ptr;