From 12f417edbd21b322a8eaa8feb0ab238f13fa83c6 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Thu, 18 Jan 2001 02:57:08 +0000 Subject: Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to Vladimir N. Oleynik. --- findutils/find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'findutils') 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; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { if (pattern == NULL) - fprintf(stdout, "%s\n", fileName); + puts(fileName); else { char *tmp = strrchr(fileName, '/'); @@ -44,7 +44,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk) else tmp++; if (check_wildcard_match(tmp, pattern) == TRUE) - fprintf(stdout, "%s\n", fileName); + puts(fileName); } return (TRUE); } -- cgit v1.2.3