Skip to content

Commit

Permalink
wt-status.c: mark a private file-scope symbol as static
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Sep 16, 2012
1 parent 357e9c6 commit 1e24845
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wt-status.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 0 additions & 2 deletions wt-status.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 1e24845

Please sign in to comment.