Skip to content

Commit 1e24845

Browse files
committed
wt-status.c: mark a private file-scope symbol as static
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 357e9c6 commit 1e24845

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

wt-status.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ void status_printf(struct wt_status *s, const char *color,
100100
va_end(ap);
101101
}
102102

103-
void status_printf_more(struct wt_status *s, const char *color,
104-
const char *fmt, ...)
103+
static void status_printf_more(struct wt_status *s, const char *color,
104+
const char *fmt, ...)
105105
{
106106
va_list ap;
107107

wt-status.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,5 @@ void status_printf_ln(struct wt_status *s, const char *color, const char *fmt, .
9292
;
9393
void status_printf(struct wt_status *s, const char *color, const char *fmt, ...)
9494
;
95-
void status_printf_more(struct wt_status *s, const char *color, const char *fmt, ...)
96-
__attribute__((format(printf, 3, 4)));
9795

9896
#endif /* STATUS_H */

0 commit comments

Comments
 (0)