mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +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)
|
if (diff != 0)
|
||||||
return diff;
|
return diff;
|
||||||
|
|
||||||
diff = strcmp (f1->name, f2->name);
|
diff = strcmp (f2->name, f1->name);
|
||||||
|
|
||||||
return diff;
|
return diff;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue