summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/analyze/analyze-inspect-elf.c4
-rw-r--r--src/locale/localectl.c2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/analyze/analyze-inspect-elf.c b/src/analyze/analyze-inspect-elf.c
index da2c64565a..cb6692e277 100644
--- a/src/analyze/analyze-inspect-elf.c
+++ b/src/analyze/analyze-inspect-elf.c
@@ -38,10 +38,6 @@ static int analyze_elf(char **filenames, JsonFormatFlags json_flags) {
if (!t)
return log_oom();
- r = table_set_align_percent(t, TABLE_HEADER_CELL(0), 100);
- if (r < 0)
- return table_log_add_error(r);
-
r = table_add_many(
t,
TABLE_FIELD, "path",
diff --git a/src/locale/localectl.c b/src/locale/localectl.c
index 9a4e4fb59b..966f07d083 100644
--- a/src/locale/localectl.c
+++ b/src/locale/localectl.c
@@ -84,7 +84,7 @@ static int print_status_info(StatusInfo *i) {
if (!strv_isempty(kernel_locale)) {
log_warning("Warning: Settings on kernel command line override system locale settings in /etc/locale.conf.");
r = table_add_many(table,
- TABLE_STRING, "Command Line:",
+ TABLE_FIELD, "Command Line",
TABLE_SET_COLOR, ansi_highlight_yellow(),
TABLE_STRV, kernel_locale,
TABLE_SET_COLOR, ansi_highlight_yellow());