From 770f16a538c07c7169c28674120d08bf6084a54d Mon Sep 17 00:00:00 2001 From: wollman Date: Mon, 16 Oct 1995 18:32:35 +0000 Subject: Don't use printf() for simple strings because it is slow. Closes PR 783. Submitted by: Wolfram Schneider --- usr.bin/find/function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/find/function.c') diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index c316b9d..92892ba 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -783,7 +783,7 @@ f_print(plan, entry) PLAN *plan; FTSENT *entry; { - (void)printf("%s\n", entry->fts_path); + (void)puts(entry->fts_path); return (1); } -- cgit v1.1