diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-09-17 12:20:33 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-09-17 13:12:49 +0200 |
commit | 7f8afa6dc1f66ba1073148c31475e562811baf3c (patch) | |
tree | 2eb51c0bef3a54b64b23cea6e66942557f12bc74 | |
parent | various: use "-" instead of "n/a" in tables (diff) | |
download | systemd-7f8afa6dc1f66ba1073148c31475e562811baf3c.tar.xz systemd-7f8afa6dc1f66ba1073148c31475e562811baf3c.zip |
coredumpctl: rename table entry
"Disk Size" could be mistaken for "Size of the Disk".
-rw-r--r-- | man/coredumpctl.xml | 2 | ||||
-rw-r--r-- | src/coredump/coredumpctl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/man/coredumpctl.xml b/man/coredumpctl.xml index 903565764e..d28a177842 100644 --- a/man/coredumpctl.xml +++ b/man/coredumpctl.xml @@ -380,7 +380,7 @@ Fri … 552351 1000 1000 SIGSEGV present /usr/lib64/firefox/firefox 28.7M Machine ID: … Hostname: … Storage: /var/lib/systemd/coredump/core.bash.1000.….zst (present) - Disk Size: 51.7K + Size on Disk: 51.7K Message: Process 130414 (bash) of user 1000 dumped core. Stack trace of thread 130414: diff --git a/src/coredump/coredumpctl.c b/src/coredump/coredumpctl.c index 43babb9803..6557e98f0a 100644 --- a/src/coredump/coredumpctl.c +++ b/src/coredump/coredumpctl.c @@ -717,7 +717,7 @@ static int print_info(FILE *file, sd_journal *j, bool need_space) { ansi_normal()); if (size != UINT64_MAX) - fprintf(file, " Disk Size: %s\n", FORMAT_BYTES(size)); + fprintf(file, " Size on Disk: %s\n", FORMAT_BYTES(size)); } else if (coredump) fprintf(file, " Storage: journal\n"); |