mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
autolink: fix else branch
This commit is contained in:
parent
ced868c208
commit
bad8dac56e
1 changed files with 1 additions and 1 deletions
|
|
@ -372,7 +372,7 @@ static void on_node_created(struct node_info *info)
|
|||
|
||||
if (strcmp(category, "Capture") == 0)
|
||||
direction = PW_DIRECTION_OUTPUT;
|
||||
if (strcmp(category, "Playback") == 0)
|
||||
else if (strcmp(category, "Playback") == 0)
|
||||
direction = PW_DIRECTION_INPUT;
|
||||
else
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue