mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
Explicitly mark static functions as static
This commit is contained in:
4
log.c
4
log.c
@@ -217,7 +217,7 @@ logger_min_verbose(int minimum)
|
|||||||
log_level = minimum;
|
log_level = minimum;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
detect_log_level(const char *level)
|
detect_log_level(const char *level)
|
||||||
{
|
{
|
||||||
if (!strcmp(level, "DEBUG"))
|
if (!strcmp(level, "DEBUG"))
|
||||||
@@ -240,7 +240,7 @@ detect_log_level(const char *level)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
detect_log_facility(const char *facility)
|
detect_log_facility(const char *facility)
|
||||||
{
|
{
|
||||||
int local = 0;
|
int local = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user