Explorar el Código

refactor(clippy): clippy::semicolon_if_nothing_returned

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen hace 2 años
padre
commit
10e4613d7c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/output/table.rs

+ 1 - 1
src/output/table.rs

@@ -476,7 +476,7 @@ impl<'a, 'f> Table<'a> {
     }
     }
 
 
     pub fn add_widths(&mut self, row: &Row) {
     pub fn add_widths(&mut self, row: &Row) {
-        self.widths.add_widths(row)
+        self.widths.add_widths(row);
     }
     }
 
 
     fn permissions_plus(&self, file: &File<'_>, xattrs: bool) -> Option<f::PermissionsPlus> {
     fn permissions_plus(&self, file: &File<'_>, xattrs: bool) -> Option<f::PermissionsPlus> {