From e4d6a21165c01dd743a68e323fb06708ef820ab7 Mon Sep 17 00:00:00 2001 From: rsc <rsc> Date: Tue, 28 Aug 2007 18:32:08 +0000 Subject: more consistent spacing --- console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'console.c') diff --git a/console.c b/console.c index d849860..8acc242 100644 --- a/console.c +++ b/console.c @@ -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++] = '-'; -- cgit v1.2.3