mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
Don't use printf() for simple strings because it is slow. Closes PR 783.
Submitted by: Wolfram Schneider <wosch@freebsd.first.gmd.de>
This commit is contained in:
parent
3d1f141b23
commit
81e236a01c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11538
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user