Follow up to r320992, properly escape the backslash so it renders properly.

MFC after:	1 week
Forgotten by:	brd
X-MFC-With:	r320992
This commit is contained in:
Brad Davis 2017-07-14 17:27:15 +00:00
parent d29193055b
commit a9796f9d2b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320993

View File

@ -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);