From 9adf30b218fdf913ebecc045e4edf698640506bc Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 20 Jul 2000 20:22:28 +0000 Subject: * cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int, and print it with %u. --- libiberty/ChangeLog | 5 +++++ libiberty/cplus-dem.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'libiberty') diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index d867941a53c..e2d3813af9a 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2000-07-20 Joseph S. Myers + + * cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int, + and print it with %u. + 2000-07-17 Hans-Peter Nilsson * testsuite/regress-demangle (failed test): Show result and diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index 81ebbfcbe51..5211348064d 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -3399,7 +3399,7 @@ demangle_fund_type (work, mangled, result) int done = 0; int success = 1; char buf[10]; - int dec = 0; + unsigned int dec = 0; string btype; type_kind_t tk = tk_integral; @@ -3543,7 +3543,7 @@ demangle_fund_type (work, mangled, result) *mangled += min (strlen (*mangled), 2); } sscanf (buf, "%x", &dec); - sprintf (buf, "int%i_t", dec); + sprintf (buf, "int%u_t", dec); APPEND_BLANK (result); string_append (result, buf); break; -- cgit v1.2.1