1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-29 01:33:46 +00:00

Fix typo - correct type is 16 bit int, not 64

This commit is contained in:
King_DuckZ 2016-06-01 10:08:56 +02:00
parent 3608d7b76c
commit 470738fc1b

View file

@ -34,7 +34,7 @@ namespace mchlib {
typedef boost::flyweight<std::string, boost::flyweights::no_locking, MimeStringTag> mime_string;
FileRecordData ( void ) = default;
FileRecordData ( const char* parPath, std::time_t parATime, std::time_t parMTime, uint64_t parLevel, bool parIsDir, bool parIsSymLink ) :
FileRecordData ( const char* parPath, std::time_t parATime, std::time_t parMTime, uint16_t parLevel, bool parIsDir, bool parIsSymLink ) :
hash {},
abs_path(parPath),
mime_full(),