From c6c63cff509e99885700d9a82f7ed5f0cf2c6f50 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Wed, 26 Feb 2020 18:14:59 +0100 Subject: [PATCH] Fix sndioctl SYNOPSYS and usage string. --- sndioctl/sndioctl.1 | 4 +--- sndioctl/sndioctl.c | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sndioctl/sndioctl.1 b/sndioctl/sndioctl.1 index c2b1341..4edc7b0 100644 --- a/sndioctl/sndioctl.1 +++ b/sndioctl/sndioctl.1 @@ -23,12 +23,10 @@ .Sh SYNOPSIS .Nm .Bk -words -.Op Fl iv +.Op Fl dimv .Op Fl f Ar device .Op Ar command ... .Ek -.Nm -.Fl d .Sh DESCRIPTION The .Nm diff --git a/sndioctl/sndioctl.c b/sndioctl/sndioctl.c index 6ead092..1d9f698 100644 --- a/sndioctl/sndioctl.c +++ b/sndioctl/sndioctl.c @@ -872,7 +872,7 @@ main(int argc, char **argv) break; default: fprintf(stderr, "usage: sndioctl " - "[-dimnv] [-f device] [command ...]\n"); + "[-dimv] [-f device] [command ...]\n"); exit(1); } }