diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:39:04 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:39:04 +0000 |
commit | 689cc5dc6b83149bef22a899677c99fc1e6b3073 (patch) | |
tree | 88cd8c5a9e477b77c0bda823c18ea75cdfa65aaa /coreutils | |
parent | 538bafcccf3351e71239422ea57c9937d85fab7c (diff) | |
download | busybox-w32-689cc5dc6b83149bef22a899677c99fc1e6b3073.tar.gz busybox-w32-689cc5dc6b83149bef22a899677c99fc1e6b3073.tar.bz2 busybox-w32-689cc5dc6b83149bef22a899677c99fc1e6b3073.zip |
...and yet another small fix. Ouch...
git-svn-id: svn://busybox.net/trunk/busybox@16449 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/length.c | 4 |
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) | |||
13 | bb_show_usage(); | 13 | bb_show_usage(); |
14 | } | 14 | } |
15 | 15 | ||
16 | bb_printf("%lu\n", (unsigned long)strlen(*argv)); | 16 | printf("%lu\n", (unsigned long)strlen(*argv)); |
17 | 17 | ||
18 | bb_fflush_stdout_and_exit(EXIT_SUCCESS); | 18 | fflush_stdout_and_exit(EXIT_SUCCESS); |
19 | } | 19 | } |