class.c (dump_class_hierarchy): Make format agree with argument; cast pointer to unsigned long and print with %lx.

* class.c (dump_class_hierarchy): Make format agree with argument;
	cast pointer to unsigned long and print with %lx.

From-SVN: r31535
This commit is contained in:
Brad Lucier 2000-01-20 08:12:26 +00:00 committed by Mark Mitchell
parent 65f6fa241e
commit 2984dacf54
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-01-20 Brad Lucier <lucier@math.purdue.edu>
* class.c (dump_class_hierarchy): Make format agree with argument;
cast pointer to unsigned long and print with %lx.
2000-01-19 Gabriel Dos Reis <gdr@codesourcery>
* decl2.c (lang_decode_option): Set default line-wrap length to 72.

View File

@ -6297,8 +6297,8 @@ dump_class_hierarchy (binfo, indent)
{
int i;
fprintf (stderr, "%*s0x%x (%s) %d %s\n", indent, "",
(unsigned int) binfo,
fprintf (stderr, "%*s0x%lx (%s) %d %s\n", indent, "",
(unsigned long) binfo,
type_as_string (binfo, TS_PLAIN),
TREE_INT_CST_LOW (BINFO_OFFSET (binfo)),
BINFO_PRIMARY_MARKED_P (binfo) ? "primary" : "");