[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:
Pavel Roskin 2005-09-29 16:53:14 -04:00 коммит произвёл Junio C Hamano
Родитель 7d167feb8b
Коммит cdda474525
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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)