Skip to content
Snippets Groups Projects
Commit c6e83cad authored by asynchronous rob's avatar asynchronous rob
Browse files

fix warning

parent f12add69
No related merge requests found
...@@ -100,7 +100,7 @@ impl<'a> BlockChunker<'a> { ...@@ -100,7 +100,7 @@ impl<'a> BlockChunker<'a> {
file_path.push(hash.hex()); file_path.push(hash.hex());
let mut file = File::create(file_path).unwrap(); let mut file = File::create(file_path).unwrap();
file.write_all(&raw_data); file.write_all(&raw_data).unwrap();
hash hash
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment