From bf0a201008671f81c107de72c026b1b84967561d Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 26 Dec 2006 10:42:51 +0000 Subject: style fixes last xcalloc replaced by xzalloc --- runit/runit_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runit/runit_lib.c') diff --git a/runit/runit_lib.c b/runit/runit_lib.c index 5ebbc5840..8612a1b94 100644 --- a/runit/runit_lib.c +++ b/runit/runit_lib.c @@ -337,7 +337,7 @@ unsigned fmt_ulong(char *s,unsigned long u) while (q > 9) { ++len; q /= 10; } if (s) { s += len; - do { *--s = '0' + (u % 10); u /= 10; } while(u); /* handles u == 0 */ + do { *--s = '0' + (u % 10); u /= 10; } while (u); /* handles u == 0 */ } return len; } -- cgit v1.2.3