...and yet another small fix. Ouch...
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 26 Oct 2006 23:39:04 +0000 (23:39 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 26 Oct 2006 23:39:04 +0000 (23:39 -0000)
coreutils/length.c
libbb/Kbuild

index 55fef131b5c3febe917c633aec0d0867d87c532c..6413be007f95c30d63c4902a617a2951ddd0f1ef 100644 (file)
@@ -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);
 }
index 87c09bdfde9c01d60a720e0cab620c1c55255624..0dd8c2be45cf33c4acb79097d068f25bc2507091 100644 (file)
@@ -9,7 +9,7 @@ lib-y:= \
        compare_string_array.o concat_path_file.o copy_file.o copyfd.o \
        crc32.o create_icmp_socket.o create_icmp6_socket.o \
        device_open.o dump.o error_msg.o error_msg_and_die.o \
-       find_pid_by_name.o find_root_device.o xmalloc_fgets_str.o \
+       find_pid_by_name.o find_root_device.o fgets_str.o \
        full_write.o get_last_path_component.o get_line_from_file.o \
        herror_msg.o herror_msg_and_die.o \
        human_readable.o inet_common.o inode_hash.o isdirectory.o \