Skip to content

Commit

Permalink
chore: remove debug in cat command
Browse files Browse the repository at this point in the history
  • Loading branch information
undefinedopcode committed Jul 14, 2024
1 parent a874d24 commit 4bb682e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ func shellCat(args []string) int {
if f.Locked {
locked = "Y"
}
fmt.Printf("%-33s %6d %2s %-23s %.2x %s\n", f.Filename, (f.Size/bs)+1, locked, f.Type, f.Type, add)
fmt.Printf("%-33s %6d %2s %-23s %s\n", f.Filename, (f.Size/bs)+1, locked, f.Type, add)
}

free := 0
Expand Down

0 comments on commit 4bb682e

Please sign in to comment.