mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
Remove extraneous parentheses (Wparentheses-equality)
This commit is contained in:
parent
74e21e942e
commit
8d471e6761
2 changed files with 2 additions and 2 deletions
|
|
@ -200,7 +200,7 @@ retry:
|
|||
printf ("\n");
|
||||
#endif
|
||||
|
||||
if ((err == -EAGAIN)) {
|
||||
if (err == -EAGAIN) {
|
||||
snd_rawmidi_drain (_device);
|
||||
goto retry;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -199,7 +199,7 @@ retry:
|
|||
|
||||
ssize_t err = snd_seq_event_output(_seq, &alsa_event);
|
||||
|
||||
if ((err == -EAGAIN)) {
|
||||
if (err == -EAGAIN) {
|
||||
snd_seq_drain_output (_seq);
|
||||
goto retry;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue