On 07/27/10 13:29, Eric Blake wrote: > I'd rather see something along the lines of: > > while (INT_MAX < offset) > { > printf ("%*s", INT_MAX, ""); > offset -= INT_MAX; > } > printf ("%*s", (int) offset), "");
That'd be fine too. It's only used during debugging, and there is a similar loop with putchar ('_') that can't so easily be replaced, which is why I didn't bother.