diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-31 09:57:27 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-31 09:57:27 +0000 |
commit | edf23419dd05122e7212939a3000502071de375d (patch) | |
tree | f6d2ff64d958a710c93f996bab3a50ac1538f874 | |
parent | 7e3735592a3c24a7b0114341063c515db99aa2c1 (diff) |
Better useage string. From Alexey Dobriyan.
-rw-r--r-- | usr.bin/bc/bc.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y index 30396f0289c..10982080925 100644 --- a/usr.bin/bc/bc.y +++ b/usr.bin/bc/bc.y @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: bc.y,v 1.29 2006/03/18 21:05:50 otto Exp $ */ +/* $OpenBSD: bc.y,v 1.30 2006/03/31 09:57:26 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -31,7 +31,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: bc.y,v 1.29 2006/03/18 21:05:50 otto Exp $"; +static const char rcsid[] = "$OpenBSD: bc.y,v 1.30 2006/03/31 09:57:26 otto Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -996,7 +996,7 @@ init(void) static __dead void usage(void) { - fprintf(stderr, "%s: usage: [-cl] [-e expression] [file ...]\n", + fprintf(stderr, "usage: %s [-cl] [-e expression] [file ...]\n", __progname); exit(1); } |