mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
(gdb_no_commands_at_breakpoint): Tweak previous patch for win64 where
sizeof (long) < sizeof (void*).
This commit is contained in:
parent
7f216e7c7c
commit
657c4e8cc6
@ -930,8 +930,9 @@ gdb_no_commands_at_breakpoint (CORE_ADDR where)
|
||||
return 0;
|
||||
|
||||
if (debug_threads)
|
||||
fprintf (stderr, "at 0x%s, bp command_list is 0x%lx\n",
|
||||
paddress (where), (long) (uintptr_t) bp->command_list);
|
||||
fprintf (stderr, "at 0x%s, bp command_list is 0x%s\n",
|
||||
paddress (where),
|
||||
phex_nz ((uintptr_t) bp->command_list, 0));
|
||||
return (bp->command_list == NULL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user