summaryrefslogtreecommitdiff
path: root/src/game/g_admin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_admin.c')
-rw-r--r--src/game/g_admin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index a979a774..faad787e 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -1019,7 +1019,7 @@ static void llsort( struct llist **head, int compar( const void *, const void *
}
for( bs = c; ( b && bs ) || as; l = t )
{
- if( as && ( !bs || !b || compar( a, b ) < 0 ) )
+ if( as && ( !bs || !b || compar( a, b ) <= 0 ) )
t = a, a = a->next, as--;
else
t = b, b = b->next, bs--;