Skip to content

Commit 3759faf

Browse files
committed
fix src/bin/cargo-strip.rs
1 parent 99b88b0 commit 3759faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo-strip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ extern crate cargo_binutils as cbu;
33
use std::process;
44

55
fn main() {
6-
match cbu::run(|ctxt| ctxt.strip(), false) {
6+
match cbu::run(false, |ctxt| ctxt.strip(), |_ctxt, stdout| stdout.into()) {
77
Err(e) => eprintln!("error: {}", e),
88
Ok(ec) => process::exit(ec),
99
}

0 commit comments

Comments
 (0)