From 5ceb90b647125035d52ae935a7fdae037b5b50a4 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 18 Feb 2018 15:48:42 +0100 Subject: [PATCH] user_list: Make list head static. It is only used in user_list.c. --- user_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_list.c b/user_list.c index 030865fa..d54b619a 100644 --- a/user_list.c +++ b/user_list.c @@ -13,7 +13,7 @@ #include "list.h" #include "user_list.h" -INITIALIZED_LIST_HEAD(user_list); +static INITIALIZED_LIST_HEAD(user_list); /* * Wrapper for fgets(3). -- 2.39.2