playback: Fix the order in strcmp that I broke in previous commit.
authorEdward Hervey <bilboed@bilboed.com>
Mon, 9 Nov 2009 18:58:20 +0000 (19:58 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 9 Nov 2009 18:58:20 +0000 (19:58 +0100)
gst/playback/gstfactorylists.c

index 085c153..f1d1e86 100644 (file)
@@ -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;
 }