Implement LZ4 strip and make tools write errors to err instead of out

This commit is contained in:
2023-01-03 16:34:39 +01:00
parent 3d56532a3b
commit b55d033f17
11 changed files with 140 additions and 34 deletions

View File

@@ -30,11 +30,11 @@ fn main() {
Ok(cmd_line) => {
match run_main(cmd_line) {
Ok(_) => (),
Err(error) => println!("{}", error)
Err(error) => eprintln!("{}", error)
}
},
Err(error) => {
println!("{}", error);
eprintln!("{}", error);
}
}
}