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:
parent
3608d7b76c
commit
470738fc1b
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ namespace mchlib {
|
||||||
typedef boost::flyweight<std::string, boost::flyweights::no_locking, MimeStringTag> mime_string;
|
typedef boost::flyweight<std::string, boost::flyweights::no_locking, MimeStringTag> mime_string;
|
||||||
|
|
||||||
FileRecordData ( void ) = default;
|
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 {},
|
hash {},
|
||||||
abs_path(parPath),
|
abs_path(parPath),
|
||||||
mime_full(),
|
mime_full(),
|
||||||
|
|
Loading…
Reference in a new issue