зеркало из https://github.com/microsoft/git.git
[PATCH] Make logerror() and loginfo() static
Make logerror() and loginfo() static logerror() and loginfo() in daemon.c are never declared and never called from other files, therefore they should be declared static. Found by sparse. Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
7d167feb8b
Коммит
cdda474525
4
daemon.c
4
daemon.c
|
@ -57,7 +57,7 @@ static void logreport(int priority, const char *err, va_list params)
|
|||
write(2, buf, buflen);
|
||||
}
|
||||
|
||||
void logerror(const char *err, ...)
|
||||
static void logerror(const char *err, ...)
|
||||
{
|
||||
va_list params;
|
||||
va_start(params, err);
|
||||
|
@ -65,7 +65,7 @@ void logerror(const char *err, ...)
|
|||
va_end(params);
|
||||
}
|
||||
|
||||
void loginfo(const char *err, ...)
|
||||
static void loginfo(const char *err, ...)
|
||||
{
|
||||
va_list params;
|
||||
if (!verbose)
|
||||
|
|
Загрузка…
Ссылка в новой задаче