mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-20 04:30:04 +01:00
module-avb: es_builder: fix invalid return check
This commit is contained in:
parent
f30a0c1864
commit
831357ee88
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ static void *es_buidler_desc_stream_general_prepare(struct server *server,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
if (server_create_stream(server, stream, direction, index)) {
|
||||
if (!server_create_stream(server, stream, direction, index)) {
|
||||
pw_log_error("Could not create/initialize a stream");
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue