From f3653e4e190588e5c1bab3dba524343fbecce3f7 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Mon, 7 Mar 2022 18:17:25 +0900 Subject: [PATCH] lsfd: add static modifier to nodev_table Signed-off-by: Masatake YAMATO --- misc-utils/lsfd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc-utils/lsfd.c b/misc-utils/lsfd.c index 49c3f4b1f2..414d04801d 100644 --- a/misc-utils/lsfd.c +++ b/misc-utils/lsfd.c @@ -73,7 +73,8 @@ struct nodev { struct nodev_table { #define NODEV_TABLE_SIZE 97 struct list_head tables[NODEV_TABLE_SIZE]; -} nodev_table; +}; +static struct nodev_table nodev_table; struct name_manager { struct idcache *cache; -- 2.47.2