diff options
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 5fdb9a1..07d72ec 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -638,14 +638,14 @@ info_sharedlibrary_command (char *ignore, int from_tty) printf_unfiltered ("%-*s", addr_width, so->textsection != NULL - ? local_hex_string_custom ( - (unsigned long) so->textsection->addr, + ? longest_local_hex_string_custom ( + (LONGEST) so->textsection->addr, addr_fmt) : ""); printf_unfiltered ("%-*s", addr_width, so->textsection != NULL - ? local_hex_string_custom ( - (unsigned long) so->textsection->endaddr, + ? longest_local_hex_string_custom ( + (LONGEST) so->textsection->endaddr, addr_fmt) : ""); printf_unfiltered ("%-12s", so->symbols_loaded ? "Yes" : "No"); |