more consistent spacing

This commit is contained in:
rsc 2007-08-28 18:32:08 +00:00
parent c1b100e930
commit e4d6a21165
17 changed files with 59 additions and 59 deletions

View file

@ -91,13 +91,13 @@ printint(int xx, int base, int sgn)
if(sgn && xx < 0){
neg = 1;
x = 0 - xx;
} else {
}else{
x = xx;
}
do {
do{
buf[i++] = digits[x % base];
} while((x /= base) != 0);
}while((x /= base) != 0);
if(neg)
buf[i++] = '-';