From 3e0ae19f52dd528b90c93eaef5886719764459f4 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 6 Mar 1998 13:29:37 +0000 Subject: [PATCH] Fix fprintf() here too. --- share/doc/psd/20.ipctut/streamwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);