mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
remove redundant space
This commit is contained in:
parent
59e4bc431a
commit
20b336ed3c
1 changed files with 2 additions and 2 deletions
|
@ -473,7 +473,7 @@ fn display_file_name(path: &Path,
|
|||
-> Cell {
|
||||
let mut name = get_file_name(path, strip);
|
||||
|
||||
if ! options.opt_present("long") {
|
||||
if !options.opt_present("long") {
|
||||
name = get_inode(metadata, options) + &name;
|
||||
}
|
||||
|
||||
|
@ -536,7 +536,7 @@ fn display_file_name(path: &Path,
|
|||
options: &getopts::Matches)
|
||||
-> Cell {
|
||||
let mut name = get_file_name(path, strip);
|
||||
if ! options.opt_present("long") {
|
||||
if !options.opt_present("long") {
|
||||
name = get_inode(metadata, options) + &name;
|
||||
}
|
||||
let mut width = UnicodeWidthStr::width(&*name);
|
||||
|
|
Loading…
Reference in a new issue