cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int, and print it with %u.

* cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,
        and print it with %u.

From-SVN: r35153
This commit is contained in:
Joseph Myers 2000-07-20 13:58:34 -06:00 committed by Jeff Law
parent 266a442034
commit e995813266
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-07-20 Joseph S. Myers <jsm28@cam.ac.uk>
* cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,
and print it with %u.
2000-07-17 Hans-Peter Nilsson <hp@axis.com>
* testsuite/regress-demangle (failed test): Show result and

View File

@ -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;