[PATCH] Make some needlessly global stuff static

Insert 'static' where appropriate.

Signed-off-by: Peter Hagervall <hager@cs.umu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Peter Hagervall
2005-09-28 14:04:54 +02:00
committed by Junio C Hamano
parent 5acb6de13d
commit a7928f8ec7
3 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ static void objreport(struct object *obj, const char *severity,
fputs("\n", stderr);
}
int objerror(struct object *obj, const char *err, ...)
static int objerror(struct object *obj, const char *err, ...)
{
va_list params;
va_start(params, err);
@ -39,7 +39,7 @@ int objerror(struct object *obj, const char *err, ...)
return -1;
}
int objwarning(struct object *obj, const char *err, ...)
static int objwarning(struct object *obj, const char *err, ...)
{
va_list params;
va_start(params, err);