From 2fe7b73d99038d7dd479a6995db358c9a58a6ad9 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 23:39:04 +0000 Subject: ...and yet another small fix. Ouch... --- coreutils/length.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils') diff --git a/coreutils/length.c b/coreutils/length.c index 55fef13..6413be0 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); } -- cgit v1.1