mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 16:44:33 +00:00
make mut
This commit is contained in:
parent
28c608e692
commit
e316bfca72
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue