mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
* ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
calls to local_hex_string_custom().
This commit is contained in:
parent
313fb2f63c
commit
9647fa4995
@ -1,3 +1,8 @@
|
||||
2002-07-26 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
|
||||
calls to local_hex_string_custom().
|
||||
|
||||
2002-07-26 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* irix5-nat.c: Move IRIX shared library support from here...
|
||||
|
@ -497,9 +497,9 @@ ui_out_field_core_addr (struct ui_out *uiout,
|
||||
based on TARGET_ADDR_BIT. */
|
||||
/* print_address_numeric (address, 1, local_stream); */
|
||||
if (TARGET_ADDR_BIT <= 32)
|
||||
strcpy (addstr, local_hex_string_custom ((unsigned long) address, "08l"));
|
||||
strcpy (addstr, local_hex_string_custom (address, "08l"));
|
||||
else
|
||||
strcpy (addstr, local_hex_string_custom ((unsigned long) address, "016l"));
|
||||
strcpy (addstr, local_hex_string_custom (address, "016l"));
|
||||
|
||||
ui_out_field_string (uiout, fldname, addstr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user