#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
1 changed files with 1 additions and 1 deletions

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;