1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 17:47:37 +00:00

#5185 (trunk, gtk) fix sort-by-age with patch from elhana.

This commit is contained in:
Jordan Lee 2012-12-26 23:36:23 +00:00
parent 7081027041
commit d4ab5d299f

View file

@ -403,7 +403,7 @@ compare_time (time_t a, time_t b)
if (a < b)
ret = -1;
if (a > b)
else if (a > b)
ret = 1;
else
ret = 0;