mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
pulse-server: fix case statement
This commit is contained in:
parent
17cad8e7ef
commit
9be06c46b7
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ static inline int res_to_err(int res)
|
||||||
case -ENOSYS: return ERR_NOTIMPLEMENTED;
|
case -ENOSYS: return ERR_NOTIMPLEMENTED;
|
||||||
case -EIO: return ERR_IO;
|
case -EIO: return ERR_IO;
|
||||||
case -EBUSY: case -EADDRINUSE: case -EAGAIN: return ERR_BUSY;
|
case -EBUSY: case -EADDRINUSE: case -EAGAIN: return ERR_BUSY;
|
||||||
case -ENFILE: case -EMFILE: -ENOMEM: return ERR_INTERNAL;
|
case -ENFILE: case -EMFILE: case -ENOMEM: return ERR_INTERNAL;
|
||||||
}
|
}
|
||||||
return ERR_UNKNOWN;
|
return ERR_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue