Skip to content

Commit

Permalink
Fix backend string type.
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair committed Jan 20, 2020
1 parent 74eb113 commit dc21636
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 @@ -868,7 +868,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.to_string().to_owned(),
backend: options.backend.to_string(),
runnable_module: instance.module.runnable_module.clone(),
});
true
Expand Down

0 comments on commit dc21636

Please sign in to comment.