mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Fix warnings.
This commit is contained in:
parent
e87bbb093a
commit
08ff81b09a
4 changed files with 5 additions and 7 deletions
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue