dbghelp: Trace 64-bit integers with I64 width modifier.

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-08 09:12:06 +02:00 committed by Alexandre Julliard
parent 7c908eb9a4
commit 4d7eccd616

View file

@ -693,7 +693,7 @@ static struct symt* codeview_add_type_array(struct codeview_type_parse* ctp,
if (symt_get_info(ctp->module, elem, TI_GET_LENGTH, &elem_size) && elem_size)
{
if (arr_len % (DWORD)elem_size)
FIXME("array size should be a multiple of element size %u %lu\n", arr_len, (DWORD)elem_size);
FIXME("array size should be a multiple of element size %u %I64u\n", arr_len, elem_size);
count = arr_len / (unsigned)elem_size;
}
return &symt_new_array(ctp->module, 0, count, elem, index)->symt;