diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-03-06 13:29:37 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-03-06 13:29:37 +0000 |
commit | 3e0ae19f52dd528b90c93eaef5886719764459f4 (patch) | |
tree | f56696e779758a5470afac851d9d8bdc261b2f2f /share/doc/psd/20.ipctut | |
parent | 6e4802b80e15669617a0e2357e9dd03f862bdfa7 (diff) |
Fix fprintf() here too.
Notes
Notes:
svn path=/head/; revision=34105
Diffstat (limited to 'share/doc/psd/20.ipctut')
-rw-r--r-- | share/doc/psd/20.ipctut/streamwrite.c | 2 |
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 6205f135cf51..07a35281e172 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); |