aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-14 04:32:06 -0700
committerFuwn <[email protected]>2024-09-14 04:32:06 -0700
commit30a0bf6e5aec20c40e1b0c96fe9c6e3521997ff3 (patch)
tree82e4912ce2370567a11f0f5570ba60f67241a2b5
parentchore(cargo): add lock-file (diff)
downloadt-master.tar.xz
t-master.zip
fix: panic-macro-consistencyHEADmaster
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index da2726b..b0d7100 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -40,7 +40,7 @@ fn main() {
let matches = match opts.parse(&args[1..]) {
Ok(m) => m,
- Err(f) => panic!(f.to_string()),
+ Err(f) => panic!("{}", f.to_string()),
};
if matches.opt_present("h") {