1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00
This commit is contained in:
Mitchell Livingston 2010-07-11 21:06:28 +00:00
parent 99315a273b
commit 730283b8f7

View file

@ -1479,6 +1479,9 @@ int trashDataFile(const char * filename)
- (NSInteger) stalledMinutes - (NSInteger) stalledMinutes
{ {
if (fStat->idleSecs == -1)
return -1;
return fStat->idleSecs / 60; return fStat->idleSecs / 60;
} }