Changeset 7461 for branches/1.4x/libtransmission/bandwidth.c
- Timestamp:
- Dec 22, 2008, 5:21:17 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.4x/libtransmission/bandwidth.c
r7455 r7461 110 110 comparePointers( const void * a, const void * b ) 111 111 { 112 return a - b; 112 if( a != b ) 113 return a < b ? -1 : 1; 114 115 return 0; 113 116 } 114 117
Note: See TracChangeset
for help on using the changeset viewer.