wt-status.c: mark a private file-scope symbol as static

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2012-09-15 22:46:26 -07:00
parent 357e9c69c9
commit 1e24845cc2
2 changed files with 2 additions and 4 deletions

View File

@ -100,8 +100,8 @@ void status_printf(struct wt_status *s, const char *color,
va_end(ap);
}
void status_printf_more(struct wt_status *s, const char *color,
const char *fmt, ...)
static void status_printf_more(struct wt_status *s, const char *color,
const char *fmt, ...)
{
va_list ap;

View File

@ -92,7 +92,5 @@ void status_printf_ln(struct wt_status *s, const char *color, const char *fmt, .
;
void status_printf(struct wt_status *s, const char *color, const char *fmt, ...)
;
void status_printf_more(struct wt_status *s, const char *color, const char *fmt, ...)
__attribute__((format(printf, 3, 4)));
#endif /* STATUS_H */