From: rob Date: Tue, 22 Feb 2022 16:08:59 +0000 (+0000) Subject: Remove -v option from usage. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c7e1d3450e27ede9a609368dea1fd1b529ac562d;p=openbsd Remove -v option from usage. Ok millert@ --- 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); }