Changeset 14162
- Timestamp:
- Aug 17, 2013, 4:20:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/session.c
r14148 r14162 2797 2797 }; 2798 2798 2799 /* higher positions come first */2800 2799 static int 2801 2800 compareTorrentAndPositions (const void * va, const void * vb) … … 2806 2805 2807 2806 if (a->position > b->position) 2807 ret = 1; 2808 else if (a->position < b->position) 2808 2809 ret = -1; 2809 else if (a->position < b->position)2810 ret = 1;2811 2810 else 2812 2811 ret = 0;
Note: See TracChangeset
for help on using the changeset viewer.