mixerctl: add colon after 'Usage', add space after comma

This commit is contained in:
rillig 2021-12-26 15:36:49 +00:00
parent 86e4d8c787
commit 2b9d699f00
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mixerctl.c,v 1.29 2021/12/17 13:50:10 christos Exp $ */
/* $NetBSD: mixerctl.c,v 1.30 2021/12/26 15:36:49 rillig Exp $ */
/*
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: mixerctl.c,v 1.29 2021/12/17 13:50:10 christos Exp $");
__RCSID("$NetBSD: mixerctl.c,v 1.30 2021/12/26 15:36:49 rillig Exp $");
#endif
#include <stdio.h>
@ -329,8 +329,8 @@ usage(void)
{
const char *prog = getprogname();
fprintf(stderr, "Usage\t%s [-d file] [-v] [-n] name ...\n", prog);
fprintf(stderr, "\t%s [-d file] [-v] [-n] -w name=value ...\n",prog);
fprintf(stderr, "Usage:\t%s [-d file] [-v] [-n] name ...\n", prog);
fprintf(stderr, "\t%s [-d file] [-v] [-n] -w name=value ...\n", prog);
fprintf(stderr, "\t%s [-d file] [-v] [-n] -a\n", prog);
exit(EXIT_FAILURE);
}