winedbg: 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:30 +02:00 committed by Alexandre Julliard
parent 088c510ef1
commit 27c6ac5689
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}