mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 19:14:52 +08:00
Avoid using the ISO C99 `z' formatted output modifier
* mi/mi-interp.c (mi_memory_changed): Avoid using the ISO C99 `z' formatted output modifier.
This commit is contained in:
parent
d56a8dda6d
commit
deba7593bb
@ -1,3 +1,8 @@
|
||||
2014-03-20 Maciej W. Rozycki <macro@codesourcery.com>
|
||||
|
||||
* mi/mi-interp.c (mi_memory_changed): Avoid using the ISO C99
|
||||
`z' formatted output modifier.
|
||||
|
||||
2014-03-20 Tom Tromey <tromey@redhat.com>
|
||||
Sergio Durigan Junior <sergiodj@redhat.com>
|
||||
|
||||
|
@ -853,7 +853,7 @@ mi_memory_changed (struct inferior *inferior, CORE_ADDR memaddr,
|
||||
|
||||
ui_out_field_fmt (mi_uiout, "thread-group", "i%d", inferior->num);
|
||||
ui_out_field_core_addr (mi_uiout, "addr", target_gdbarch (), memaddr);
|
||||
ui_out_field_fmt (mi_uiout, "len", "0x%zx", len);
|
||||
ui_out_field_fmt (mi_uiout, "len", "%s", hex_string (len));
|
||||
|
||||
/* Append 'type=code' into notification if MEMADDR falls in the range of
|
||||
sections contain code. */
|
||||
|
Loading…
Reference in New Issue
Block a user