diff options
author | Matt Kraai | 2001-01-18 02:57:08 +0000 |
---|---|---|
committer | Matt Kraai | 2001-01-18 02:57:08 +0000 |
commit | 12f417edbd21b322a8eaa8feb0ab238f13fa83c6 (patch) | |
tree | 06f9de2e4c7d33d29a448fb1c42ed1beafe18e6e /du.c | |
parent | c9acf8c766a9a2cc00449db5dea506d7663ad26b (diff) | |
download | busybox-12f417edbd21b322a8eaa8feb0ab238f13fa83c6.zip busybox-12f417edbd21b322a8eaa8feb0ab238f13fa83c6.tar.gz |
Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to
Vladimir N. Oleynik.
Diffstat (limited to 'du.c')
-rw-r--r-- | du.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ static Display *print; static void print_normal(long size, char *filename) { - fprintf(stdout, "%ld\t%s\n", size, filename); + printf("%ld\t%s\n", size, filename); } static void print_summary(long size, char *filename) @@ -165,7 +165,7 @@ int du_main(int argc, char **argv) return status; } -/* $Id: du.c,v 1.32 2000/12/12 23:17:26 andersen Exp $ */ +/* $Id: du.c,v 1.33 2001/01/18 02:57:08 kraai Exp $ */ /* Local Variables: c-file-style: "linux" |