mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
winedump: Fix a printf format warning on 64-bit.
This commit is contained in:
parent
926681fead
commit
23fd37528c
1 changed files with 1 additions and 1 deletions
|
@ -669,7 +669,7 @@ static void dump_x86_64_unwind_info( const struct runtime_function *function )
|
|||
}
|
||||
if (info->flags & (UNW_FLAG_EHANDLER | UNW_FLAG_UHANDLER))
|
||||
printf( " handler %08x data at %08x\n", handler_data->handler,
|
||||
function->UnwindData + (char *)(&handler_data->handler + 1) - (char *)info );
|
||||
(ULONG)(function->UnwindData + (char *)(&handler_data->handler + 1) - (char *)info ));
|
||||
}
|
||||
|
||||
static void dump_dir_exceptions(void)
|
||||
|
|
Loading…
Reference in a new issue