diff options
author | 1996-07-23 18:37:12 +0000 | |
---|---|---|
committer | 1996-07-23 18:37:12 +0000 | |
commit | 1075d6e28683b6f9d706eedfa143deccb51d375b (patch) | |
tree | 77bb69841bf9db264ec452a877a39e99f2883951 | |
parent | other icmp traffic can cause a timeout to occur so must be more careful; (diff) | |
download | wireguard-openbsd-1075d6e28683b6f9d706eedfa143deccb51d375b.tar.xz wireguard-openbsd-1075d6e28683b6f9d706eedfa143deccb51d375b.zip |
nicer error message; netbsd pr#2651; enami@ba2.so-net.or.jp
-rw-r--r-- | usr.bin/make/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index a2099bd76b5..67fd0c7822c 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.7 1996/03/27 19:32:41 niklas Exp $ */ +/* $OpenBSD: parse.c,v 1.8 1996/07/23 18:37:12 deraadt Exp $ */ /* $NetBSD: parse.c,v 1.22 1996/03/15 21:52:41 christos Exp $ */ /* @@ -2690,7 +2690,7 @@ Parse_MainName() main = Lst_Init (FALSE); if (mainNode == NILGNODE) { - Punt ("make: no target to make.\n"); + Punt ("no target to make."); /*NOTREACHED*/ } else if (mainNode->type & OP_DOUBLEDEP) { (void) Lst_AtEnd (main, (ClientData)mainNode); |