We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adce17f commit d07780bCopy full SHA for d07780b
1 file changed
src/uu/od/src/input_offset.rs
@@ -51,8 +51,8 @@ impl InputOffset {
51
match (self.radix, self.label) {
52
(Radix::Decimal, None) => format!("{:07}", self.byte_pos),
53
(Radix::Decimal, Some(l)) => format!("{:07} ({l:07})", self.byte_pos),
54
- (Radix::Hexadecimal, None) => format!("{:06X}", self.byte_pos),
55
- (Radix::Hexadecimal, Some(l)) => format!("{:06X} ({l:06X})", self.byte_pos),
+ (Radix::Hexadecimal, None) => format!("{:06x}", self.byte_pos),
+ (Radix::Hexadecimal, Some(l)) => format!("{:06x} ({l:06x})", self.byte_pos),
56
(Radix::Octal, None) => format!("{:07o}", self.byte_pos),
57
(Radix::Octal, Some(l)) => format!("{:07o} ({l:07o})", self.byte_pos),
58
(Radix::NoPrefix, None) => String::new(),
0 commit comments