diff options
author | Denis Vlasenko | 2006-12-26 10:42:51 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-26 10:42:51 +0000 |
commit | bf0a201008671f81c107de72c026b1b84967561d (patch) | |
tree | af74820b70fa27929fe218c95822c20651b60637 /procps | |
parent | 5dd7ef0f37373e397a7160cb431a32ae57f9f7d9 (diff) | |
download | busybox-bf0a201008671f81c107de72c026b1b84967561d.zip busybox-bf0a201008671f81c107de72c026b1b84967561d.tar.gz |
style fixes
last xcalloc replaced by xzalloc
Diffstat (limited to 'procps')
-rw-r--r-- | procps/fuser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/fuser.c b/procps/fuser.c index a216eae..9752af7 100644 --- a/procps/fuser.c +++ b/procps/fuser.c @@ -319,7 +319,7 @@ int fuser_main(int argc, char **argv) bb_show_usage(); fni = xmalloc(sizeof(int)); - for(i=1;i<argc;i++) { + for (i=1;i<argc;i++) { optn = fuser_option(argv[i]); if(optn) opt |= optn; else if(argv[i][0] == '-') { @@ -335,7 +335,7 @@ int fuser_main(int argc, char **argv) if(!fnic) return 1; inodes = xmalloc(sizeof(inode_list)); - for(i=0;i<fnic;i++) { + for (i=0;i<fnic;i++) { if(fuser_parse_net_arg(argv[fni[i]], &proto, &port)) { fuser_scan_proc_net(opt, proto, port, inodes); } |