util: make log_() static
[staging/windowmanager.git] / src / util.c
index 0ce7c27..af32269 100644 (file)
@@ -11,7 +11,8 @@ struct strftime_cache {
    char buf[128];
 };
 
-void log_(char const *log_type, FILE *stream, char const *fmt, va_list args) {
+static void log_(char const *log_type, FILE *stream, char const *fmt,
+                 va_list args) {
    static struct strftime_cache strft;
 
    time_t t = time(NULL);