* maint.c (print_section_info): Do not prepend `0x' to filepos
authorPeter Schauer <Peter.Schauer@mytum.de>
Sat, 23 Feb 2002 13:18:36 +0000 (13:18 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Sat, 23 Feb 2002 13:18:36 +0000 (13:18 +0000)
output, it will be handled by local_hex_string_custom.

gdb/ChangeLog
gdb/maint.c

index 751cdd0b122edbd6e0a8d05e675c6a5cf706a8b6..557bbfbeb1069ee6462eaf7b5f304a4ac97dee4e 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-23  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
+
+       * maint.c (print_section_info): Do not prepend `0x' to filepos
+       output, it will be handled by local_hex_string_custom.
+
 2002-02-23  Richard Earnshaw  <rearnsha"arm.com>
 
        * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
index 59de6dc0a8188d388c480eb20dabdecf85373f7a..0d2be0912f505e3d1260aff9dc38589e699cdda9 100644 (file)
@@ -1,5 +1,5 @@
 /* Support for GDB maintenance commands.
-   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002
    Free Software Foundation, Inc.
    Written by Fred Fish at Cygnus Support.
 
@@ -296,7 +296,7 @@ print_section_info (const char *name, flagword flags,
   /* FIXME-32x64: Need print_address_numeric with field width.  */
   printf_filtered ("    0x%s", paddr (addr));
   printf_filtered ("->0x%s", paddr (endaddr));
-  printf_filtered (" at 0x%s",
+  printf_filtered (" at %s",
                   local_hex_string_custom ((unsigned long) filepos, "08l"));
   printf_filtered (": %s", name);
   print_bfd_flags (flags);
This page took 0.090576 seconds and 4 git commands to generate.