projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f216e7
)
(gdb_no_commands_at_breakpoint): Tweak previous patch for win64 where
author
Doug Evans
<dje@google.com>
Mon, 2 Jul 2012 17:37:35 +0000
(17:37 +0000)
committer
Doug Evans
<dje@google.com>
Mon, 2 Jul 2012 17:37:35 +0000
(17:37 +0000)
sizeof (long) < sizeof (void*).
gdb/gdbserver/mem-break.c
patch
|
blob
|
history
diff --git
a/gdb/gdbserver/mem-break.c
b/gdb/gdbserver/mem-break.c
index 8ab6e13a7c4e82c1f7ae84c8bd10e0882ab63711..39dcb865966626103be2fdab65fc79b58ba5b2cb 100644
(file)
--- a/
gdb/gdbserver/mem-break.c
+++ b/
gdb/gdbserver/mem-break.c
@@
-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);
}