diff options
author | Brad Davis <brd@FreeBSD.org> | 2017-07-14 17:27:15 +0000 |
---|---|---|
committer | Brad Davis <brd@FreeBSD.org> | 2017-07-14 17:27:15 +0000 |
commit | a9796f9d2b40e7236319354ef73e26babd219749 (patch) | |
tree | 853ea6832ec2f9386ff03352304dc77d7df88685 /lib/libc/stdlib | |
parent | d29193055bca0da2bb9219d15c88b5745691cb53 (diff) |
Notes
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/tsearch.3 | 4 |
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); |