summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pierce <rob@cvs.openbsd.org>2022-02-22 16:09:00 +0000
committerRob Pierce <rob@cvs.openbsd.org>2022-02-22 16:09:00 +0000
commit1aabf7a73262f3a42e0d292626a4c307d064f01c (patch)
tree393a460b878675928b7d15e1957bc065ffeb6be5
parent0e527d3fb18885ecb042f4a28a19d6b78bee281b (diff)
Remove -v option from usage.
Ok millert@
-rw-r--r--usr.bin/seq/seq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/seq/seq.c b/usr.bin/seq/seq.c
index 5ca075f7d80..873f7267674 100644
--- a/usr.bin/seq/seq.c
+++ b/usr.bin/seq/seq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: seq.c,v 1.1 2022/02/22 15:15:34 millert Exp $ */
+/* $OpenBSD: seq.c,v 1.2 2022/02/22 16:08:59 rob Exp $ */
/*-
* Copyright (c) 2005 The NetBSD Foundation, Inc.
@@ -411,7 +411,7 @@ static __dead void
usage(int error)
{
fprintf(stderr,
- "usage: %s [-vw] [-f format] [-s string] [first [incr]] last\n",
+ "usage: %s [-w] [-f format] [-s string] [first [incr]] last\n",
getprogname());
exit(error);
}