From: Masatake YAMATO Date: Mon, 7 Mar 2022 09:17:25 +0000 (+0900) Subject: lsfd: add static modifier to nodev_table X-Git-Tag: v2.39-rc1~709^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3653e4e190588e5c1bab3dba524343fbecce3f7;p=thirdparty%2Futil-linux.git lsfd: add static modifier to nodev_table Signed-off-by: Masatake YAMATO --- 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;