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 --- modutils/lsmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modutils/lsmod.c') diff --git a/modutils/lsmod.c b/modutils/lsmod.c index ffde3d829..987174081 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -82,7 +82,7 @@ int lsmod_main(int argc, char **argv) module_names = deps = NULL; bufsize = depsize = 0; - while(query_module(NULL, QM_MODULES, module_names, bufsize, &nmod)) { + while (query_module(NULL, QM_MODULES, module_names, bufsize, &nmod)) { if (errno != ENOSPC) bb_perror_msg_and_die("QM_MODULES"); module_names = xmalloc(bufsize = nmod); } -- cgit v1.2.3