fix warning

This commit is contained in:
Robert Habermeier 2016-06-10 13:33:43 +02:00
parent f12add6958
commit c6e83caddf

View File

@ -100,7 +100,7 @@ impl<'a> BlockChunker<'a> {
file_path.push(hash.hex());
let mut file = File::create(file_path).unwrap();
file.write_all(&raw_data);
file.write_all(&raw_data).unwrap();
hash
}