* utils.c (decimal2str): Initialize 'width' to nine, then
don't mess with it.
+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.
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: