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:
parent
7081027041
commit
d4ab5d299f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue