summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 159b725..d9683a3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -33,9 +33,8 @@ fn main() {
}
// Write bytecode to standard output
- if let Err(err) = std::io::stdout().write_all(&bytecode) {
+ if let Err(_) = std::io::stdout().write_all(&bytecode) {
eprintln!("Could not write to standard output, quitting.");
- eprintln!("({err:?})");
std::process::exit(1);
}
}