summaryrefslogtreecommitdiffstats
path: root/src/render/row/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/row/mod.rs')
-rw-r--r--src/render/row/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/row/mod.rs b/src/render/row/mod.rs
index 2953d58..4ae8b13 100644
--- a/src/render/row/mod.rs
+++ b/src/render/row/mod.rs
@@ -74,7 +74,7 @@ pub fn formatter<'a>(buf: &'a mut String, ctx: &'a Context) -> Result<RowFormatt
}
})),
}
- },
+ }
_ => match (ctx.long.long, ctx.suppress_size) {
(false, false) => Ok(Box::new(|file, prefix| {
let size = format!("{}", file.size());
@@ -160,7 +160,7 @@ pub fn formatter<'a>(buf: &'a mut String, ctx: &'a Context) -> Result<RowFormatt
}
}))
}
- },
+ }
_ => {
if ctx.suppress_size {
Ok(Box::new(|file, prefix| {
@@ -185,6 +185,6 @@ pub fn formatter<'a>(buf: &'a mut String, ctx: &'a Context) -> Result<RowFormatt
}
}))
}
- },
+ }
}
}