fix accumulated whitespace and indentation damage

This commit is contained in:
Denis Vlasenko 2007-03-20 11:30:28 +00:00
parent e84aeb5bcb
commit c86e052b81
23 changed files with 145 additions and 145 deletions

View File

@ -68,7 +68,7 @@ static void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
}
static void itoa_to_buf(int n, char *buf, unsigned buflen)
{
if (buflen && n<0) {
if (buflen && n < 0) {
n = -n;
*buf++ = '-';
buflen--;