Skip to content

Commit

Permalink
chore: Fix build warning due to unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
theduke committed Mar 7, 2023
1 parent bf02462 commit 1e22225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/cli/tests/create_exe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ fn create_obj(args: Vec<String>) -> anyhow::Result<()> {
let wasm_path = operating_dir.as_path().join(create_exe_test_wasm_path());

let object_path = operating_dir.as_path().join("wasm");
let output: Vec<u8> = WasmerCreateObj {
let _output: Vec<u8> = WasmerCreateObj {
current_dir: operating_dir,
wasm_path,
output_object_path: object_path.clone(),
Expand Down

0 comments on commit 1e22225

Please sign in to comment.