From bc7f865abb76491ea9c612dee3981eb48dca5335 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Wed, 5 May 2021 02:50:51 +0900 Subject: [PATCH] lsfd: adjust column width for COMMAND Signed-off-by: Masatake YAMATO --- misc-utils/lsfd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/lsfd.c b/misc-utils/lsfd.c index 0f315ce0c9..c9952d73e6 100644 --- a/misc-utils/lsfd.c +++ b/misc-utils/lsfd.c @@ -78,7 +78,7 @@ struct colinfo { static struct colinfo infos[] = { [COL_ASSOC] = { "ASSOC", 0, SCOLS_FL_RIGHT, SCOLS_JSON_STRING, N_("association between file and process") }, - [COL_COMMAND] = { "COMMAND", 15, 0, SCOLS_JSON_STRING, + [COL_COMMAND] = { "COMMAND", 15, SCOLS_FL_TRUNC, SCOLS_JSON_STRING, N_("command of the process opening the file") }, [COL_DELETED] = { "DELETED", 0, SCOLS_FL_RIGHT, SCOLS_JSON_BOOLEAN, N_("reachability from the file system") }, -- 2.47.3