1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Boring warning fixes.

This commit is contained in:
Bartosz Taudul
2020-03-01 01:48:20 +01:00
parent 8f9ba5d54a
commit c36ed4b8b8
4 changed files with 10 additions and 14 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ static inline bool SourceFileValid( const char* fn, uint64_t olderThan )
struct stat buf;
if( stat( fn, &buf ) == 0 && ( buf.st_mode & S_IFREG ) != 0 )
{
return buf.st_mtime < olderThan;
return (uint64_t)buf.st_mtime < olderThan;
}
return false;
}