Skip to content

Commit

Permalink
tlp-stat -s: remove excessive whitespace
Browse files Browse the repository at this point in the history
Reference:
* #702
  • Loading branch information
linrunner committed Sep 16, 2023
1 parent 937acd3 commit ae19477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion func.d/tlp-func-stat
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ print_file_modtime_and_age () {
if [ -f "$1" ]; then
mtime=$(date +%X -r "$1")
age=$(( $(date +%s) - $(date +%s -r "$1") ))
printf '%s, %6d sec(s) ago' "$mtime" "$age"
printf '%s, %d sec(s) ago' "$mtime" "$age"
else
printf "unknown"
fi
Expand Down

0 comments on commit ae19477

Please sign in to comment.