This commit is contained in:
Folkert 2021-09-07 16:48:11 +02:00
parent 28c608e692
commit e316bfca72

View file

@ -100,7 +100,7 @@ pub fn helper_wasm<'a>(
match std::fs::File::create(path) { match std::fs::File::create(path) {
Err(e) => eprintln!("Problem creating wasm debug file: {:?}", e), Err(e) => eprintln!("Problem creating wasm debug file: {:?}", e),
Ok(file) => { Ok(mut file) => {
file.write_all(&module_bytes).unwrap(); file.write_all(&module_bytes).unwrap();
} }
} }