Skip to content

Commit

Permalink
Fix type of backend passed to push_code_version.
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair committed Jan 13, 2020
1 parent 42e5e78 commit f4fb107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/wasmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ fn execute_wasm(options: &Run) -> Result<(), String> {
baseline: true,
msm: msm,
base: instance.module.runnable_module.get_code().unwrap().as_ptr() as usize,
backend: options.backend,
backend: options.backend.to_string().to_owned(),
runnable_module: instance.module.runnable_module.clone(),
});
true
Expand Down

0 comments on commit f4fb107

Please sign in to comment.