From: Kevin Buettner Date: Sat, 27 Jul 2002 01:54:15 +0000 (+0000) Subject: * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in X-Git-Tag: drow-cplus-branchpoint~1031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9647fa4995eeedb1bb8f77048110871213170747;p=platform%2Fupstream%2Fbinutils.git * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in calls to local_hex_string_custom(). --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 91b1c64..88b6573 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2002-07-26 Kevin Buettner + * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in + calls to local_hex_string_custom(). + +2002-07-26 Kevin Buettner + * irix5-nat.c: Move IRIX shared library support from here... * solib-irix.c: ...to here. Revised substantially to work with generic solib framework. diff --git a/gdb/ui-out.c b/gdb/ui-out.c index c07d695..4a4a922 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -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); }