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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs
index 04f93df..2d752bf 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -39,14 +39,14 @@ pub enum NtfsError {
},
/// The cluster count {cluster_count} is too big
InvalidClusterCount { cluster_count: u64 },
- /// The requested NTFS file {n} is invalid
- InvalidFile { n: u64 },
/// The NTFS file record at byte position {position:#010x} indicates an allocated size of {expected} bytes, but the record only has a size of {actual} bytes
InvalidFileAllocatedSize {
position: u64,
expected: u32,
actual: u32,
},
+ /// The requested NTFS file record number {file_record_number} is invalid
+ InvalidFileRecordNumber { file_record_number: u64 },
/// The NTFS file record at byte position {position:#010x} should have signature {expected:?}, but it has signature {actual:?}
InvalidFileSignature {
position: u64,