mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
parent
000b3d7e90
commit
d01fe6a10f
1 changed files with 4 additions and 4 deletions
|
@ -2482,13 +2482,13 @@ fn display_item_long(
|
|||
}
|
||||
};
|
||||
|
||||
let dfn = display_file_name(item, config, None, String::new(), out).contents;
|
||||
let displayed_file = display_file_name(item, config, None, String::new(), out).contents;
|
||||
|
||||
write!(
|
||||
out,
|
||||
" {} {}{}",
|
||||
display_date(md, config),
|
||||
dfn,
|
||||
displayed_file,
|
||||
config.line_ending
|
||||
)?;
|
||||
} else {
|
||||
|
@ -2561,7 +2561,7 @@ fn display_item_long(
|
|||
write!(out, " {}", pad_right("?", padding.uname))?;
|
||||
}
|
||||
|
||||
let dfn = display_file_name(item, config, None, String::new(), out).contents;
|
||||
let displayed_file = display_file_name(item, config, None, String::new(), out).contents;
|
||||
let date_len = 12;
|
||||
|
||||
writeln!(
|
||||
|
@ -2569,7 +2569,7 @@ fn display_item_long(
|
|||
" {} {} {}",
|
||||
pad_left("?", padding.size),
|
||||
pad_left("?", date_len),
|
||||
dfn,
|
||||
displayed_file,
|
||||
)?;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue