summaryrefslogtreecommitdiffstats
path: root/share/doc
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-03-06 13:29:37 +0000
committerjkh <jkh@FreeBSD.org>1998-03-06 13:29:37 +0000
commit31ba7c266a39bcdf7383ae5b51e1136a6e433e81 (patch)
tree4b9d081e9f0e594dcc64fd75bfbf81f5cdeda7af /share/doc
parent32df54dafd36e5ea862565f23af0ffa17db21906 (diff)
downloadFreeBSD-src-31ba7c266a39bcdf7383ae5b51e1136a6e433e81.zip
FreeBSD-src-31ba7c266a39bcdf7383ae5b51e1136a6e433e81.tar.gz
Fix fprintf() here too.
Diffstat (limited to 'share/doc')
-rw-r--r--share/doc/psd/20.ipctut/streamwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/psd/20.ipctut/streamwrite.c b/share/doc/psd/20.ipctut/streamwrite.c
index 6205f13..07a3528 100644
--- a/share/doc/psd/20.ipctut/streamwrite.c
+++ b/share/doc/psd/20.ipctut/streamwrite.c
@@ -65,7 +65,7 @@ main(argc, argv)
server.sin_family = AF_INET;
hp = gethostbyname(argv[1]);
if (hp == 0) {
- fprintf(stderr, "%s: unknown host\en", argv[1]);
+ fprintf(stderr, "%s: unknown host\n", argv[1]);
exit(2);
}
bcopy(hp->h_addr, &server.sin_addr, hp->h_length);
OpenPOWER on IntegriCloud