aboutsummaryrefslogtreecommitdiff
path: root/findutils/find.c
diff options
context:
space:
mode:
Diffstat (limited to 'findutils/find.c')
-rw-r--r--findutils/find.c4
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;
35static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 35static 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}