diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
commit | bf0a201008671f81c107de72c026b1b84967561d (patch) | |
tree | af74820b70fa27929fe218c95822c20651b60637 /applets | |
parent | 5dd7ef0f37373e397a7160cb431a32ae57f9f7d9 (diff) | |
download | busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.tar.gz busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.tar.bz2 busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.zip |
style fixes
last xcalloc replaced by xzalloc
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 9ca12ac2b..79634f99e 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -129,7 +129,7 @@ int busybox_main(int argc, char **argv) | |||
129 | "\twill act like whatever it was invoked as!\n" | 129 | "\twill act like whatever it was invoked as!\n" |
130 | "\nCurrently defined functions:\n", bb_msg_full_version); | 130 | "\nCurrently defined functions:\n", bb_msg_full_version); |
131 | col = 0; | 131 | col = 0; |
132 | for(a = applets; a->name;) { | 132 | for (a = applets; a->name;) { |
133 | col += printf("%s%s", (col ? ", " : "\t"), a->name); | 133 | col += printf("%s%s", (col ? ", " : "\t"), a->name); |
134 | a++; | 134 | a++; |
135 | if (col > output_width && a->name) { | 135 | if (col > output_width && a->name) { |