summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2001-07-09 15:54:36 +0000
committerru <ru@FreeBSD.org>2001-07-09 15:54:36 +0000
commit1c060c459c287e8db44a4ad818a230b31e803542 (patch)
treefce5136e694e49a5f5dee3eb52265773fedd4092
parent302824a321f0f6ebddc56c8a8f3b88e29a555271 (diff)
downloadFreeBSD-src-1c060c459c287e8db44a4ad818a230b31e803542.zip
FreeBSD-src-1c060c459c287e8db44a4ad818a230b31e803542.tar.gz
mdoc(7) police: eliminate -ww warnings.
-rw-r--r--lib/libc/stdlib/hcreate.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/hcreate.3 b/lib/libc/stdlib/hcreate.3
index 1500b2a..0894789 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;
}
OpenPOWER on IntegriCloud