Commit 4d7eccd6 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent 7c908eb9
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment