mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:25:42 +01:00
Fixed open default
This commit is contained in:
parent
86b50130e9
commit
cc398d1855
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
int quiet = 0;
|
int quiet = 0;
|
||||||
int debugflag = 0;
|
int debugflag = 0;
|
||||||
char *card = "0";
|
char *card = "hw:0";
|
||||||
|
|
||||||
static void error(const char *fmt,...)
|
static void error(const char *fmt,...)
|
||||||
{
|
{
|
||||||
|
@ -57,7 +57,7 @@ static int help(void)
|
||||||
printf("Usage: amixer <options> command\n");
|
printf("Usage: amixer <options> command\n");
|
||||||
printf("\nAvailable options:\n");
|
printf("\nAvailable options:\n");
|
||||||
printf(" -h,--help this help\n");
|
printf(" -h,--help this help\n");
|
||||||
printf(" -c,--card # use a card number (0-%i) or the card name, default %s\n", snd_cards() - 1, card);
|
printf(" -c,--card N use a ctl name, default %s\n", card);
|
||||||
printf(" -D,--debug debug mode\n");
|
printf(" -D,--debug debug mode\n");
|
||||||
printf(" -v,--version print version of this program\n");
|
printf(" -v,--version print version of this program\n");
|
||||||
printf("\nAvailable commands:\n");
|
printf("\nAvailable commands:\n");
|
||||||
|
|
Loading…
Reference in a new issue