diff options
Diffstat (limited to 'rust/examples')
| -rw-r--r-- | rust/examples/simple.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/examples/simple.rs b/rust/examples/simple.rs index c6065d48..f01d5267 100644 --- a/rust/examples/simple.rs +++ b/rust/examples/simple.rs @@ -17,7 +17,7 @@ fn main() { println!("Function count: {}", bv.functions().len()); for func in &bv.functions() { - println!("{:?}:", func.symbol().full_name()); + println!("{}:", func.symbol()); for basic_block in &func.basic_blocks() { // TODO : This is intended to be refactored to be more nice to work with soon(TM) for addr in basic_block.as_ref() { |
