diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-07-09 15:54:36 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-07-09 15:54:36 +0000 |
| commit | e25e8ab41ca2d3789a44d2d4009dea8fd2cf7d95 (patch) | |
| tree | fce5136e694e49a5f5dee3eb52265773fedd4092 /lib/libc/stdlib | |
| parent | 42dadc4a582345154e874707fad0dad03814093d (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/hcreate.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/hcreate.3 b/lib/libc/stdlib/hcreate.3 index 1500b2a5722f..0894789438da 100644 --- a/lib/libc/stdlib/hcreate.3 +++ b/lib/libc/stdlib/hcreate.3 @@ -170,12 +170,12 @@ main(void) while (scanf("%s", item.key) != EOF) { if ((found_item = hsearch(item, FIND)) != NULL) { /* If item is in the table. */ - (void)printf("found %s, age = %d, room = %d\n", + (void)printf("found %s, age = %d, room = %d\en", found_item->key, ((struct info *)found_item->data)->age, ((struct info *)found_item->data)->room); } else - (void)printf("no such employee %s\n", name_to_find); + (void)printf("no such employee %s\en", name_to_find); } return 0; } |
