mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:25:42 +01:00
alsaloop: fix a typo in the comparison
Hello maintainers, I would like to suggest you a patch which fixes a typo in the alsa-utils alsaloop. Best Regards, Kirill Marinushkin Signed-off-by: Kirill Marinushkin <k.marinushkin@gmail.com> Cc: patch@alsa-project.org Cc: alsa-devel@alsa-project.org Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
f1eba0b5de
commit
66b31f2451
1 changed files with 1 additions and 1 deletions
|
@ -1479,7 +1479,7 @@ __again:
|
|||
if (loop->play->access == loop->capt->access &&
|
||||
loop->play->format == loop->capt->format &&
|
||||
loop->play->rate == loop->capt->rate &&
|
||||
loop->play->channels == loop->play->channels &&
|
||||
loop->play->channels == loop->capt->channels &&
|
||||
loop->sync != SYNC_TYPE_SAMPLERATE) {
|
||||
if (verbose > 1)
|
||||
snd_output_printf(loop->output, "shared buffer!!!\n");
|
||||
|
|
Loading…
Reference in a new issue