mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
pulse-server: add missing minus sign
Noticed by @QuLogic.
Fixes: 87c00a6f00 ("pulse-server: add missing EWOULDBLOCK check")
This commit is contained in:
parent
2723b0c6e2
commit
80e3da9b01
1 changed files with 1 additions and 1 deletions
|
|
@ -5654,7 +5654,7 @@ on_client_data(void *data, int fd, uint32_t mask)
|
|||
while (true) {
|
||||
res = do_read(client);
|
||||
if (res < 0) {
|
||||
if (res != -EAGAIN && res != EWOULDBLOCK)
|
||||
if (res != -EAGAIN && res != -EWOULDBLOCK)
|
||||
goto error;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue