diff options
-rwxr-xr-x | build-aux/lint-bin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/lint-bin b/build-aux/lint-bin index d16a25d..ffc2a12 100755 --- a/build-aux/lint-bin +++ b/build-aux/lint-bin @@ -63,10 +63,10 @@ lint_globals() { source="$(realpath --canonicalize-missing --no-symlinks --relative-to="$topdir" -- "$source")" ;; esac - printf '%s %s 0x%04x\n' "$source" "$symbol" "$size" + printf "%s %s 0x%04x (%'d)\n" "$source" "$symbol" "$size" "$size" total=$((total + size)) done - printf '~ Total 0x%04x\n' "$total" + printf "~ Total 0x%04x (%'d)\n" "$total" "$total" } | LC_COLLATE=C sort } | column -t |