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

github.com/windirstat/RustyMft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthew seyer <matthew.seyer@gmail.com>2017-11-07 08:25:23 +0300
committermatthew seyer <matthew.seyer@gmail.com>2017-11-07 08:25:23 +0300
commitf3207e646cee4195cb8255ab97d8dca5dd414998 (patch)
treea69933e4ade5d8f2a20d90a5942ed4e7d1bdf3b5 /examples/parse_entry.rs
parent347bc3d7b5cfe16e291a1d8f0ee03a7cc1cdd09b (diff)
fixxed tests/examples
Diffstat (limited to 'examples/parse_entry.rs')
-rw-r--r--examples/parse_entry.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/parse_entry.rs b/examples/parse_entry.rs
index 53fa76e..e4f504b 100644
--- a/examples/parse_entry.rs
+++ b/examples/parse_entry.rs
@@ -72,7 +72,7 @@ fn print_entry_01(){
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00
];
- let mft_entry = entry::MftEntry::new(entry_buffer.to_vec(),None).unwrap();
+ let mft_entry = entry::MftEntry::new(entry_buffer.to_vec(),0).unwrap();
println!("{}",serde_json::to_string_pretty(&mft_entry).unwrap());
}