...and yet another small fix. Ouch...

This commit is contained in:
Denis Vlasenko
2006-10-26 23:39:04 +00:00
parent 1de0830e62
commit 2fe7b73d99
2 changed files with 3 additions and 3 deletions

View 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);
}