From 2b8779ee6ff9fb618bae222fbb49021e67b1df74 Mon Sep 17 00:00:00 2001 From: Pietro Cerutti Date: Mon, 23 Apr 2018 13:35:38 +0000 Subject: [PATCH] Make a file-level variable static --- mutt/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutt/logging.c b/mutt/logging.c index 9edbe7a19..8d99d381a 100644 --- a/mutt/logging.c +++ b/mutt/logging.c @@ -59,7 +59,7 @@ char *LogFileVersion = NULL; /**< Program version */ /** * LogQueue - In-memory list of log lines */ -STAILQ_HEAD(, LogLine) LogQueue = STAILQ_HEAD_INITIALIZER(LogQueue); +static STAILQ_HEAD(, LogLine) LogQueue = STAILQ_HEAD_INITIALIZER(LogQueue); int LogQueueCount = 0; /**< Number of entries currently in the log queue */ int LogQueueMax = 0; /**< Maximum number of entries in the log queue */ -- 2.40.0