Skip to content

Commit 47f8264

Browse files
committed
cargo fmt
1 parent 5c040e4 commit 47f8264

File tree

1 file changed

+1
-5
lines changed
  • crates/disassemble/src/core

1 file changed

+1
-5
lines changed

crates/disassemble/src/core/mod.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,7 @@ pub async fn disassemble(args: DisassemblerArgs) -> Result<String, Error> {
4141
asm.push_str(
4242
format!(
4343
"{} {} {}\n",
44-
if args.decimal_counter {
45-
offset.to_string()
46-
} else {
47-
format!("{:06x}", offset)
48-
},
44+
if args.decimal_counter { offset.to_string() } else { format!("{:06x}", offset) },
4945
opcode_name(opcode),
5046
pushed_bytes
5147
)

0 commit comments

Comments
 (0)