Skip to content
Snippets Groups Projects
Commit 0b2d6dd1 authored by Bruce Cowan's avatar Bruce Cowan
Browse files

Fix sorting

parent e619c575
No related branches found
No related tags found
No related merge requests found
Pipeline #2666 passed
......@@ -41,11 +41,11 @@ sort_func (gconstpointer a,
int atries, autries;
int btries, butries;
g_object_get ((gpointer) a,
g_object_get (*((gpointer *) a),
"tries", &atries,
"utries", &autries,
NULL);
g_object_get ((gpointer) b,
g_object_get (*((gpointer *) b),
"tries", &btries,
"utries", &butries,
NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment