From a7928f8ec7fb3c368e6086ab48f41e33a22e1b94 Mon Sep 17 00:00:00 2001 From: Peter Hagervall Date: Wed, 28 Sep 2005 14:04:54 +0200 Subject: [PATCH] Make some needlessly global stuff static Insert 'static' where appropriate. Signed-off-by: Peter Hagervall Signed-off-by: Junio C Hamano --- http-fetch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'http-fetch.c') diff --git a/http-fetch.c b/http-fetch.c index 7fc363f8ea..33f3949252 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -27,7 +27,7 @@ struct alt_base struct alt_base *next; }; -struct alt_base *alt = NULL; +static struct alt_base *alt = NULL; static SHA_CTX c; static z_stream stream; @@ -354,7 +354,7 @@ static int fetch_pack(struct alt_base *repo, unsigned char *sha1) return 0; } -int fetch_object(struct alt_base *repo, unsigned char *sha1) +static int fetch_object(struct alt_base *repo, unsigned char *sha1) { char *hex = sha1_to_hex(sha1); char *filename = sha1_file_name(sha1); -- cgit v1.2.1