mirror of
https://github.com/alsa-project/alsa-utils
synced 2025-01-02 23:29:45 +01:00
alsactl: fix the copy-n-paste typo (SND_RAWMIDI_STREAM_*)
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
7e9bebad0b
commit
8ed9d7607f
1 changed files with 2 additions and 2 deletions
|
@ -236,9 +236,9 @@ int general_card_info(int cardno)
|
|||
|
||||
first = true;
|
||||
if (err >= 0)
|
||||
err = rawmidi_device_list(ctl, SND_PCM_STREAM_PLAYBACK, &first);
|
||||
err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_INPUT, &first);
|
||||
if (err >= 0)
|
||||
err = rawmidi_device_list(ctl, SND_PCM_STREAM_CAPTURE, &first);
|
||||
err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_OUTPUT, &first);
|
||||
|
||||
if (err >= 0)
|
||||
err = hwdep_device_list(ctl);
|
||||
|
|
Loading…
Reference in a new issue