mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05: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)
|
if (strcmp(category, "Capture") == 0)
|
||||||
direction = PW_DIRECTION_OUTPUT;
|
direction = PW_DIRECTION_OUTPUT;
|
||||||
if (strcmp(category, "Playback") == 0)
|
else if (strcmp(category, "Playback") == 0)
|
||||||
direction = PW_DIRECTION_INPUT;
|
direction = PW_DIRECTION_INPUT;
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue