diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-10-24 02:53:48 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-10-24 02:53:48 +0000 |
commit | ce4148445e05aaf721403c78d72df187a11c4461 (patch) | |
tree | 6814566c503fce2351fb93d6e05f72c32687f441 /gdb/hp-psymtab-read.c | |
parent | 8f236061d95d934a70b505449f6235bbfaa90270 (diff) | |
download | gdb-ce4148445e05aaf721403c78d72df187a11c4461.zip gdb-ce4148445e05aaf721403c78d72df187a11c4461.tar.gz gdb-ce4148445e05aaf721403c78d72df187a11c4461.tar.bz2 |
Fix -Wformat for hpux.
Diffstat (limited to 'gdb/hp-psymtab-read.c')
-rw-r--r-- | gdb/hp-psymtab-read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/hp-psymtab-read.c b/gdb/hp-psymtab-read.c index 4ffc0b3..349ab18 100644 --- a/gdb/hp-psymtab-read.c +++ b/gdb/hp-psymtab-read.c @@ -865,8 +865,8 @@ hpread_quick_traverse (struct objfile *objfile, char *gntt_bits, (CURR_MODULE_END == 0) || (CURR_MODULE_END == -1))) { TELL_OBJFILE; - warning ("Module \"%s\" [0x%x] has non-standard addresses. It starts at 0x%x, ends at 0x%x, and will be skipped.", - mod_name_string, curr_md, start_adr, end_adr); + warning ("Module \"%s\" [0x%s] has non-standard addresses. It starts at 0x%s, ends at 0x%s, and will be skipped.", + mod_name_string, paddr_nz (curr_md), paddr_nz (start_adr), paddr_nz (end_adr)); /* On to next module */ curr_md++; } |