Update src/bin/wasmer.rs

This commit is contained in:
Syrus Akbary 2019-12-10 16:10:33 -08:00 committed by GitHub
parent a52fadf54e
commit 8e4fdcf5f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -836,7 +836,7 @@ fn execute_wasm(options: &Run) -> Result<(), String> {
.map_err(|e| format!("{:?}", e))? .map_err(|e| format!("{:?}", e))?
.call(&args) .call(&args)
.map_err(|e| format!("{:?}", e))?; .map_err(|e| format!("{:?}", e))?;
println!("{}({:?}) returned: {:?}", invoke_fn, args, result); println!("{}({:?}) returned {:?}", invoke_fn, args, result);
} }
} }