playback: Fix the order in strcmp that I broke in previous commit.
This commit is contained in:
parent
c661bfaa99
commit
e34abf228d
@ -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…
x
Reference in New Issue
Block a user