mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Fix the comparison parens
The parens were unnecessary and didn't seem to match the intent for the result.
This commit is contained in:
parent
d6c5da5678
commit
ca9da0ed5a
1 changed files with 1 additions and 1 deletions
|
|
@ -5328,7 +5328,7 @@ static int port_compare_func(const void *v1, const void *v2)
|
|||
res = is_def2 - is_def1;
|
||||
else if ((*o1)->port.priority != (*o2)->port.priority)
|
||||
res = (*o2)->port.priority - (*o1)->port.priority;
|
||||
else if ((res = strcmp((*o1)->port.alias1, (*o2)->port.alias1) == 0)) {
|
||||
else if ((res = strcmp((*o1)->port.alias1, (*o2)->port.alias1)) == 0) {
|
||||
res = (*o1)->port.node_id - (*o2)->port.node_id;
|
||||
if (res == 0)
|
||||
res = (*o1)->port.system_id - (*o2)->port.system_id;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue