2011-02-28 Michael Snyder <msnyder@vmware.com>

* utils.c (decimal2str): Initialize 'width' to nine, then
	don't mess with it.
This commit is contained in:
Michael Snyder 2011-02-28 22:00:45 +00:00
parent fb6a3ed393
commit 9f72fee2a6
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2011-02-28 Michael Snyder <msnyder@vmware.com>
* utils.c (decimal2str): Initialize 'width' to nine, then
don't mess with it.
2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
* hostio.c (require_data): Free *data, not data.

View File

@ -263,19 +263,16 @@ decimal2str (char *sign, ULONGEST addr)
unsigned long temp[3];
char *str = get_cell ();
int i = 0;
int width;
int width = 9;
do
{
temp[i] = addr % (1000 * 1000 * 1000);
addr /= (1000 * 1000 * 1000);
i++;
width -= 9;
}
while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
width = 9;
switch (i)
{
case 1: