Fix warnings.

This commit is contained in:
Josh Matthews 2022-01-03 13:05:19 -05:00
parent e87bbb093a
commit 08ff81b09a
4 changed files with 5 additions and 7 deletions

View file

@ -57,7 +57,7 @@ struct FileStoreEntry {
struct FileMetaData {
path: PathBuf,
/// Modified time in UNIX Epoch format
modified: u64,
_modified: u64,
size: u64,
}
@ -660,7 +660,7 @@ impl FileManagerStore {
let file_impl = FileImpl::MetaDataOnly(FileMetaData {
path: file_path.to_path_buf(),
modified: modified_epoch,
_modified: modified_epoch,
size: file_size,
});