diff options
author | Josh Matthews <josh@joshmatthews.net> | 2022-01-03 13:05:19 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2022-01-03 13:05:19 -0500 |
commit | 08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9 (patch) | |
tree | b84bc1bd25fb64e592ce9c96ae69f355ac82aefe /components/net/filemanager_thread.rs | |
parent | e87bbb093ac2ccd362da6dedf87388653ca01377 (diff) | |
download | servo-08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9.tar.gz servo-08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9.zip |
Fix warnings.
Diffstat (limited to 'components/net/filemanager_thread.rs')
-rw-r--r-- | components/net/filemanager_thread.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/filemanager_thread.rs b/components/net/filemanager_thread.rs index d56bdd54668..a1e8ff40116 100644 --- a/components/net/filemanager_thread.rs +++ b/components/net/filemanager_thread.rs @@ -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, }); |