From 20b336ed3c6d163e918b0cd54b338c4ca014eaec Mon Sep 17 00:00:00 2001 From: "Sunrin SHIMURA (keen)" <3han5chou7@gmail.com> Date: Tue, 10 Jan 2017 10:37:34 +0900 Subject: [PATCH] remove redundant space --- src/ls/ls.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ls/ls.rs b/src/ls/ls.rs index 85175c333..48bfee79a 100644 --- a/src/ls/ls.rs +++ b/src/ls/ls.rs @@ -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);