Skip to content

Commit

Permalink
remove unneeded mut
Browse files Browse the repository at this point in the history
  • Loading branch information
seapagan committed Feb 10, 2025
1 parent 403b926 commit b569ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ fn calculate_column_widths(
let mut max_group_width = 0;
let mut max_size_width = 0;
let mut max_date_width = 0;
let mut icon_width = if params.no_icons { 0 } else { 2 }; // 2 for icon + space
let icon_width = if params.no_icons { 0 } else { 2 }; // 2 for icon + space

for info in file_info {
// Mode (type + permissions)
Expand Down

0 comments on commit b569ddc

Please sign in to comment.