Explicitly mark static functions as static

This commit is contained in:
Ian Barwick
2015-11-13 19:46:12 +09:00
committed by Ian Barwick
parent 8f24167f68
commit 2a3fb89603

4
log.c
View File

@@ -217,7 +217,7 @@ logger_min_verbose(int minimum)
log_level = minimum;
}
int
static int
detect_log_level(const char *level)
{
if (!strcmp(level, "DEBUG"))
@@ -240,7 +240,7 @@ detect_log_level(const char *level)
return -1;
}
int
static int
detect_log_facility(const char *facility)
{
int local = 0;