From f0ed376eda5d5c25d270e5100a881fb2d801bee6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 23:21:47 +0000 Subject: remove bb_printf and the like --- coreutils/du.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coreutils/du.c') diff --git a/coreutils/du.c b/coreutils/du.c index efc4490..cae76af 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -56,14 +56,14 @@ static void print(long size, const char * const filename) { /* TODO - May not want to defer error checking here. */ #ifdef CONFIG_FEATURE_HUMAN_READABLE - bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr), + printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr), filename); #else if (disp_k) { size++; size >>= 1; } - bb_printf("%ld\t%s\n", size, filename); + printf("%ld\t%s\n", size, filename); #endif } @@ -246,5 +246,5 @@ int du_main(int argc, char **argv) print(total, "total"); } - bb_fflush_stdout_and_exit(status); + fflush_stdout_and_exit(status); } -- cgit v1.1