diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 23:39:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 23:39:04 +0000 |
commit | 2fe7b73d99038d7dd479a6995db358c9a58a6ad9 (patch) | |
tree | 88cd8c5a9e477b77c0bda823c18ea75cdfa65aaa | |
parent | 1de0830e6220c3a5583903c685aa21faced2f02c (diff) | |
download | busybox-w32-2fe7b73d99038d7dd479a6995db358c9a58a6ad9.tar.gz busybox-w32-2fe7b73d99038d7dd479a6995db358c9a58a6ad9.tar.bz2 busybox-w32-2fe7b73d99038d7dd479a6995db358c9a58a6ad9.zip |
...and yet another small fix. Ouch...
-rw-r--r-- | coreutils/length.c | 4 | ||||
-rw-r--r-- | libbb/Kbuild | 2 |
2 files changed, 3 insertions, 3 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 | } |
diff --git a/libbb/Kbuild b/libbb/Kbuild index 87c09bdfd..0dd8c2be4 100644 --- a/libbb/Kbuild +++ b/libbb/Kbuild | |||
@@ -9,7 +9,7 @@ lib-y:= \ | |||
9 | compare_string_array.o concat_path_file.o copy_file.o copyfd.o \ | 9 | compare_string_array.o concat_path_file.o copy_file.o copyfd.o \ |
10 | crc32.o create_icmp_socket.o create_icmp6_socket.o \ | 10 | crc32.o create_icmp_socket.o create_icmp6_socket.o \ |
11 | device_open.o dump.o error_msg.o error_msg_and_die.o \ | 11 | device_open.o dump.o error_msg.o error_msg_and_die.o \ |
12 | find_pid_by_name.o find_root_device.o xmalloc_fgets_str.o \ | 12 | find_pid_by_name.o find_root_device.o fgets_str.o \ |
13 | full_write.o get_last_path_component.o get_line_from_file.o \ | 13 | full_write.o get_last_path_component.o get_line_from_file.o \ |
14 | herror_msg.o herror_msg_and_die.o \ | 14 | herror_msg.o herror_msg_and_die.o \ |
15 | human_readable.o inet_common.o inode_hash.o isdirectory.o \ | 15 | human_readable.o inet_common.o inode_hash.o isdirectory.o \ |