summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorsushi-shi <47691267+sushi-shi@users.noreply.github.com>2022-02-25 03:56:32 +0300
committerGitHub <noreply@github.com>2022-02-24 19:56:32 -0500
commit5451fd9865f2a75d623992a072eb639ea20e688f (patch)
treefca079a571f8fe01dc72c9a05daf6efcea18e091 /src/main.rs
parent55b401cfa35ee3ce09d2deba94f0d490ad666e9b (diff)
Fix clippy warnings (#144)
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 375db4c..ecc8e6b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -147,7 +147,7 @@ fn main() {
let args = Args::from_args();
if let Err(e) = run_joshuto(args) {
- eprintln!("{}", e.to_string());
+ eprintln!("{}", e);
process::exit(1);
}
}