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

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs
index 89e8d7b..85b6d3e 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -118,6 +118,8 @@ pub enum NtfsError {
expected: &'static [u8],
actual: [u8; 2],
},
+ /// The Upcase Table should have a size of {expected} bytes, but it has {actual} bytes
+ InvalidUpcaseTableSize { expected: u64, actual: u64 },
/// The VCN {vcn} read from the NTFS data run header at byte position {position:#010x} cannot be added to the LCN {previous_lcn} calculated from previous data runs
InvalidVcnInDataRunHeader {
position: u64,