diff options
author | Pierre Habouzit <madcoder@debian.org> | 2007-06-07 22:45:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-08 02:37:19 -0700 |
commit | 52fae7de4e8455dad048f1b8a645729571c42848 (patch) | |
tree | 65c143e2a9753621414dffd586b5f9cd43a7fef5 /wt-status.c | |
parent | e1944f4074f845e4dd15fb77856b4463f51c7d81 (diff) | |
download | git-52fae7de4e8455dad048f1b8a645729571c42848.tar.gz |
Missing statics.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r-- | wt-status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c index 4bfe8f15d8..52054201c2 100644 --- a/wt-status.c +++ b/wt-status.c @@ -198,7 +198,7 @@ static void wt_read_cache(struct wt_status *s) read_cache(); } -void wt_status_print_initial(struct wt_status *s) +static void wt_status_print_initial(struct wt_status *s) { int i; char buf[PATH_MAX]; |