diff options
author | Matt Kraai <kraai@debian.org> | 2001-01-18 02:57:08 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-01-18 02:57:08 +0000 |
commit | 12f417edbd21b322a8eaa8feb0ab238f13fa83c6 (patch) | |
tree | 06f9de2e4c7d33d29a448fb1c42ed1beafe18e6e /findutils/find.c | |
parent | c9acf8c766a9a2cc00449db5dea506d7663ad26b (diff) | |
download | busybox-w32-12f417edbd21b322a8eaa8feb0ab238f13fa83c6.tar.gz busybox-w32-12f417edbd21b322a8eaa8feb0ab238f13fa83c6.tar.bz2 busybox-w32-12f417edbd21b322a8eaa8feb0ab238f13fa83c6.zip |
Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to
Vladimir N. Oleynik.
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/findutils/find.c b/findutils/find.c index c82b509b6..32d7db7ab 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -35,7 +35,7 @@ static int dereferenceFlag = FALSE; | |||
35 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | 35 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
36 | { | 36 | { |
37 | if (pattern == NULL) | 37 | if (pattern == NULL) |
38 | fprintf(stdout, "%s\n", fileName); | 38 | puts(fileName); |
39 | else { | 39 | else { |
40 | char *tmp = strrchr(fileName, '/'); | 40 | char *tmp = strrchr(fileName, '/'); |
41 | 41 | ||
@@ -44,7 +44,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | |||
44 | else | 44 | else |
45 | tmp++; | 45 | tmp++; |
46 | if (check_wildcard_match(tmp, pattern) == TRUE) | 46 | if (check_wildcard_match(tmp, pattern) == TRUE) |
47 | fprintf(stdout, "%s\n", fileName); | 47 | puts(fileName); |
48 | } | 48 | } |
49 | return (TRUE); | 49 | return (TRUE); |
50 | } | 50 | } |