fixed compilation due to previous commit

This commit is contained in:
cyril soler 2016-11-15 09:18:51 +01:00
parent aeb683479b
commit de6f753fec

View File

@ -139,7 +139,7 @@ static bool dirDetailToFileDetail(const DirDetails& dir, FileDetail& fd)
fd.hash = dir.hash;
fd.path = dir.path;
fd.size = dir.count;
fd.age = dir.age;
fd.age = time(NULL) - dir.mtime;
fd.rank = 0;
return true;
}