From aaa030d66cf46a61e6209f5d7e954e054b4b93b7 Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce.cowan@strath.ac.uk> Date: Thu, 9 Jan 2020 11:41:10 +0000 Subject: [PATCH] Fix 2nd level of sort being number of converted tries --- src/rugby-list-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rugby-list-store.c b/src/rugby-list-store.c index d3bed91..c103481 100644 --- a/src/rugby-list-store.c +++ b/src/rugby-list-store.c @@ -56,7 +56,7 @@ sort_func (gconstpointer a, if (trydiff != 0) return trydiff; else - return atries - btries; + return btries - atries; } // Callbacks -- GitLab