From 23cc8a9646a28fe8873f6ee7aed2f32765404b10 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Sat, 16 Jun 2018 12:25:03 +0000 Subject: [PATCH] Cleanup: Mark local functions static --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 89ed2552..48647eed 100644 --- a/src/main.c +++ b/src/main.c @@ -116,7 +116,7 @@ static void _stop_logging(void) log_close(playlistlog); } -void initialize_subsystems(void) +static void initialize_subsystems(void) { log_initialize(); thread_initialize(); @@ -134,7 +134,7 @@ void initialize_subsystems(void) #endif } -void shutdown_subsystems(void) +static void shutdown_subsystems(void) { event_shutdown(); fserve_shutdown();