* cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,

and print it with %u.
This commit is contained in:
Jeff Law 2000-07-20 20:22:28 +00:00
parent efaf0ba464
commit 9adf30b218
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;