aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/filemanager_thread.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2022-01-03 13:05:19 -0500
committerJosh Matthews <josh@joshmatthews.net>2022-01-03 13:05:19 -0500
commit08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9 (patch)
treeb84bc1bd25fb64e592ce9c96ae69f355ac82aefe /components/net/filemanager_thread.rs
parente87bbb093ac2ccd362da6dedf87388653ca01377 (diff)
downloadservo-08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9.tar.gz
servo-08ff81b09aa8c5c54c3ff7cb8eaeb682955f1be9.zip
Fix warnings.
Diffstat (limited to 'components/net/filemanager_thread.rs')
-rw-r--r--components/net/filemanager_thread.rs4
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,
});