diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2019-04-28 16:28:01 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2019-04-28 16:28:01 +0000 |
commit | d032fa65214fbdf2825d8af352f9550486329c01 (patch) | |
tree | 751e428d4b77af47b5717dff99d80c902a60e083 /sbin/vnconfig | |
parent | 7654fe8c61a6849cd04f4315c6763f0acce7548a (diff) |
fix misplaced hyphen in usage();
Diffstat (limited to 'sbin/vnconfig')
-rw-r--r-- | sbin/vnconfig/vnconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/vnconfig/vnconfig.c b/sbin/vnconfig/vnconfig.c index f783fef7767..6a89df98f6d 100644 --- a/sbin/vnconfig/vnconfig.c +++ b/sbin/vnconfig/vnconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vnconfig.c,v 1.3 2019/04/28 14:46:00 deraadt Exp $ */ +/* $OpenBSD: vnconfig.c,v 1.4 2019/04/28 16:28:00 jmc Exp $ */ /* * Copyright (c) 1993 University of Utah. * Copyright (c) 1990, 1993 @@ -363,6 +363,6 @@ usage(void) fprintf(stderr, " vnconfig -l [vnd_dev]\n"); fprintf(stderr, - " vnconfig -u -[v] vnd_dev\n"); + " vnconfig -u [-v] vnd_dev\n"); exit(1); } |