mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:25:43 +01:00
Small cosmetic changes...
This commit is contained in:
parent
66c3b06a5a
commit
a77f0e9208
1 changed files with 6 additions and 4 deletions
|
@ -114,7 +114,9 @@ struct {
|
|||
} formats[] = {
|
||||
{ "s8", SND_PCM_SFMT_S8 },
|
||||
{ "u8", SND_PCM_SFMT_U8 },
|
||||
{ "8", SND_PCM_SFMT_U8 },
|
||||
{ "s16l", SND_PCM_SFMT_S16_LE },
|
||||
{ "16", SND_PCM_SFMT_S16_LE },
|
||||
{ "s16b", SND_PCM_SFMT_S16_BE },
|
||||
{ "u16l", SND_PCM_SFMT_U16_LE },
|
||||
{ "u16b", SND_PCM_SFMT_U16_BE },
|
||||
|
@ -182,7 +184,7 @@ static void usage(char *command)
|
|||
fprintf(stderr, "\nRecognized data formats are:");
|
||||
for (i = 0; i < NUMFORMATS; ++i)
|
||||
fprintf(stderr, " %s", formats[i].name);
|
||||
fprintf(stderr, "\nSome of this may not be available on selected hardware\n");
|
||||
fprintf(stderr, " (some of these may not be available on selected hardware)\n");
|
||||
}
|
||||
|
||||
static void device_list(void)
|
||||
|
|
Loading…
Reference in a new issue