diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-02-26 18:06:16 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-02-26 18:06:16 +0000 |
commit | e38e67495f1226d6c60ac763ce21969a66c92fd4 (patch) | |
tree | de03b5fd86ce7ea12043beba50808a6972bc923f | |
parent | 3dc031389d051f7aef2d41b4f91a0f5d963e8302 (diff) |
consistent error message; from ray lai
ok deraadt
-rw-r--r-- | usr.bin/make/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index f28fadf56cf..7cfadc06e56 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: main.c,v 1.66 2005/02/17 02:37:21 jolan Exp $ */ +/* $OpenBSD: main.c,v 1.67 2006/02/26 18:06:15 jmc Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* @@ -268,7 +268,7 @@ MainParseArgs(int argc, char **argv) break; default: (void)fprintf(stderr, - "make: illegal argument to d option -- %c\n", + "make: illegal argument to -d option -- %c\n", *modules); usage(); } |