Compare commits

..

No commits in common. "master" and "v1.1" have entirely different histories.
master ... v1.1

View File

@ -15,7 +15,7 @@ fn print_printable_or_dot(chunk: &[u8]) {
#[inline(always)] #[inline(always)]
fn print_offset(offset: usize) { fn print_offset(offset: usize) {
print!("{offset:08x} "); print!("{:08x} ", offset);
} }
#[inline(always)] #[inline(always)]
@ -24,7 +24,7 @@ fn print_data_hex(chunk: &[u8]) {
if idx > 0 && idx % 8 == 0 { if idx > 0 && idx % 8 == 0 {
print!(" "); print!(" ");
} }
print!("{byte:02x} "); print!("{:02x} ", byte);
} }
} }