aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 23:39:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 23:39:04 +0000
commit2fe7b73d99038d7dd479a6995db358c9a58a6ad9 (patch)
tree88cd8c5a9e477b77c0bda823c18ea75cdfa65aaa /coreutils
parent1de0830e6220c3a5583903c685aa21faced2f02c (diff)
downloadbusybox-2fe7b73d99038d7dd479a6995db358c9a58a6ad9.tar.gz
...and yet another small fix. Ouch...
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/length.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/length.c b/coreutils/length.c
index 55fef131b..6413be007 100644
--- a/coreutils/length.c
+++ b/coreutils/length.c
@@ -13,7 +13,7 @@ int length_main(int argc, char **argv)
bb_show_usage();
}
- bb_printf("%lu\n", (unsigned long)strlen(*argv));
+ printf("%lu\n", (unsigned long)strlen(*argv));
- bb_fflush_stdout_and_exit(EXIT_SUCCESS);
+ fflush_stdout_and_exit(EXIT_SUCCESS);
}