Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer BenAmram <omerbenamram@gmail.com>2019-06-04 16:29:01 +0300
committerGitHub <noreply@github.com>2019-06-04 16:29:01 +0300
commita3f3ec3e617f68540308606ae8d9a73426f627b2 (patch)
treefef98d8ce77468e0a92c3ee4c30413963c2fe34d /src/bin/mft_dump.rs
parent6176d1223ccceee81cfd81f6a73314d289f83e11 (diff)
parent77491c9c1d3216ec5f320e2c42156a2d4f2b6dee (diff)
Merge pull request #6 from omerbenamram/bugfix/disallow-reading-random-bytes
hard error on invalid input
Diffstat (limited to 'src/bin/mft_dump.rs')
-rw-r--r--src/bin/mft_dump.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/mft_dump.rs b/src/bin/mft_dump.rs
index d24db4f..915abbe 100644
--- a/src/bin/mft_dump.rs
+++ b/src/bin/mft_dump.rs
@@ -429,7 +429,7 @@ fn main() {
match app.run() {
Ok(()) => {}
Err(e) => {
- eprintln!("A runtime error has occurred {}", &e);
+ eprintln!("A runtime error has occurred: {}", &e);
exit(1);
}
};