summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-03-16 15:50:59 +0100
committerFelix Fietkau <nbd@openwrt.org>2013-03-16 15:50:59 +0100
commit5c6859ddf9f0ca57e297d2d178504c5ad1c063e7 (patch)
tree327f9b90248396a5539d214303a053740cdfd853
parent3ddae302d0f996d14b044416722f6d42eead7db9 (diff)
downloadunitd-5c6859ddf9f0ca57e297d2d178504c5ad1c063e7.tar
unitd-5c6859ddf9f0ca57e297d2d178504c5ad1c063e7.zip
make a few variables static
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r--syslog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/syslog.c b/syslog.c
index 58911ee..416740b 100644
--- a/syslog.c
+++ b/syslog.c
@@ -46,8 +46,8 @@ static char *log_dev = LOG_DEFAULT_SOCKET;
static int log_size = LOG_DEFAULT_SIZE;
static struct log_head *log, *log_end, *oldest, *newest;
static int current_id = 0;
-regex_t pat_prio;
-regex_t pat_tstamp;
+static regex_t pat_prio;
+static regex_t pat_tstamp;
static struct log_head *log_next(struct log_head *h, int size)
{