From b86155d0710ce1236a4c1be41518b27eccea95d9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 13 Nov 2023 16:12:03 +0100 Subject: [PATCH] mount-tool: make internal and external column name match --- src/mount/mount-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mount/mount-tool.c b/src/mount/mount-tool.c index 53c11022673..3e19d4bbe56 100644 --- a/src/mount/mount-tool.c +++ b/src/mount/mount-tool.c @@ -1438,7 +1438,7 @@ static int list_devices(void) { if (r < 0) return log_error_errno(r, "Failed to add property match: %m"); - table = table_new("NODE", "PATH", "MODEL", "WWN", "TYPE", "LABEL", "UUID"); + table = table_new("NODE", "PATH", "MODEL", "WWN", "FSTYPE", "LABEL", "UUID"); if (!table) return log_oom(); -- 2.47.3