Vec<u8> values cannot be printed

So show the debug format instead.
This commit is contained in:
Wilfred Hughes 2016-10-08 00:03:13 -04:00 committed by GitHub
parent 4141543ed9
commit fa22515e06

View File

@ -23,6 +23,6 @@ let text_scn = match file.get_section(".text") {
None => panic!("Failed to look up .text section"),
};
println!("{}", text_scn.data);
println!("{:?}", text_scn.data);
```