1
Fork 0

Apply clippy suggestions

This commit is contained in:
Clemens Wasser 2021-10-09 18:51:30 +02:00
parent 15491d7b6b
commit 8545472a08
4 changed files with 13 additions and 16 deletions

View file

@ -93,10 +93,8 @@ unsafe fn _print_fmt(fmt: &mut fmt::Formatter<'_>, print_fmt: PrintFmt) -> fmt::
if stop {
return false;
}
if !hit {
if start {
res = bt_fmt.frame().print_raw(frame.ip(), None, None, None);
}
if !hit && start {
res = bt_fmt.frame().print_raw(frame.ip(), None, None, None);
}
idx += 1;