summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorBrad Davis <brd@FreeBSD.org>2017-07-14 17:27:15 +0000
committerBrad Davis <brd@FreeBSD.org>2017-07-14 17:27:15 +0000
commita9796f9d2b40e7236319354ef73e26babd219749 (patch)
tree853ea6832ec2f9386ff03352304dc77d7df88685 /lib/libc/stdlib
parentd29193055bca0da2bb9219d15c88b5745691cb53 (diff)
Notes
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/tsearch.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/tsearch.3 b/lib/libc/stdlib/tsearch.3
index 9e12cf0a98ab4..f1374fd68e404 100644
--- a/lib/libc/stdlib/tsearch.3
+++ b/lib/libc/stdlib/tsearch.3
@@ -162,7 +162,7 @@ printwalk(const posix_tnode * node, VISIT v, int __unused0)
{
if (v == postorder || v == leaf) {
- printf("node: %s\n\\", *(char **)node);
+ printf("node: %s\en", *(char **)node);
}
}
@@ -181,7 +181,7 @@ main(void)
tsearch(three, &root, comp);
tsearch(four, &root, comp);
tsearch(four, &root, comp);
- printf("four: %s\n", *(char **)tfind(four, &root, comp));
+ printf("four: %s\en", *(char **)tfind(four, &root, comp));
tdelete(four, &root, comp);
twalk(root, printwalk);