diff options
author | Doug Evans <dje@google.com> | 2012-07-10 01:10:25 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-07-10 01:10:25 +0000 |
commit | 9630e38b8d046c38b463a0001be134aa4e8544d6 (patch) | |
tree | e7a9b8a9875ff3e488c2280512a2680b1c1568c7 /gdb/psymtab.c | |
parent | 4c7a87ed18db4d87db90ffc5c93d757f5ff761d8 (diff) | |
download | gdb-9630e38b8d046c38b463a0001be134aa4e8544d6.tar.gz |
* psymtab.c (allocate_psymtab): Use host_address_to_string.
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index c92cab86369..5366d947393 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1747,8 +1747,8 @@ allocate_psymtab (const char *filename, struct objfile *objfile) last_objfile_name); } fprintf_unfiltered (gdb_stdlog, - "Created psymtab 0x%lx for module %s.\n", - (long) psymtab, filename); + "Created psymtab %s for module %s.\n", + host_address_to_string (psymtab), filename); } return (psymtab); |