Skip to content

Commit

Permalink
Fix unnecessary semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
timClicks committed Feb 12, 2022
1 parent b632b81 commit d08087e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch6/ch6-memscan-3/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ fn main() {
println!("local_int: {:p}", &local_int as *const i32);
println!("boxed_int: {:p}", Box::into_raw(boxed_int));
println!("boxed_str: {:p}", Box::into_raw(boxed_str));
println!("fn_int: {:p}", fn_int)};
println!("fn_int: {:p}", fn_int);
}

0 comments on commit d08087e

Please sign in to comment.