mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
playback: Fix the order in strcmp that I broke in previous commit.
This commit is contained in:
parent
c661bfaa99
commit
e34abf228d
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ compare_ranks (GValue * v1, GValue * v2)
|
|||
if (diff != 0)
|
||||
return diff;
|
||||
|
||||
diff = strcmp (f1->name, f2->name);
|
||||
diff = strcmp (f2->name, f1->name);
|
||||
|
||||
return diff;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue