Commit 27c6ac56 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent 088c510e
......@@ -114,8 +114,8 @@ BOOL memory_write_value(const struct dbg_lvalue* lvalue, DWORD size, void* value
if (!types_get_info(&lvalue->type, TI_GET_LENGTH, &os)) return FALSE;
if (size != os)
{
dbg_printf("Size mismatch in memory_write_value, got %lu from type while expecting %lu\n",
(DWORD)os, size);
dbg_printf("Size mismatch in memory_write_value, got %I64u from type while expecting %lu\n",
os, size);
return FALSE;
}
......
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