From e1c11c47db91597f0041152fc06e7b558cdfc9e1 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 25 Feb 2018 17:59:16 +0000 Subject: [PATCH] make send_stored_logs static --- src/log.c | 2 +- src/log.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/log.c b/src/log.c index c5368b8..69b6dc0 100644 --- a/src/log.c +++ b/src/log.c @@ -217,7 +217,7 @@ out: /* * This needs to send any stored log messages. */ -void send_stored_logs (void) +static void send_stored_logs (void) { char *string; char *ptr; diff --git a/src/log.h b/src/log.h index 68c89c3..76bfe6b 100644 --- a/src/log.h +++ b/src/log.h @@ -106,7 +106,6 @@ extern void close_log_file (void); extern void log_message (int level, const char *fmt, ...); extern void set_log_level (int level); -extern void send_stored_logs (void); extern int setup_logging (void); extern void shutdown_logging (void);