diff options
author | Peter Hagervall <hager@cs.umu.se> | 2005-09-28 14:04:54 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-28 16:38:52 -0700 |
commit | a7928f8ec7fb3c368e6086ab48f41e33a22e1b94 (patch) | |
tree | 0b06ca974f9c5a5a3640f3b4b506e8117b7b5daf | |
parent | 5acb6de13d7af33abcfcbdc885ec365e6a51c486 (diff) | |
download | git-a7928f8ec7fb3c368e6086ab48f41e33a22e1b94.tar.gz |
[PATCH] Make some needlessly global stuff static
Insert 'static' where appropriate.
Signed-off-by: Peter Hagervall <hager@cs.umu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | fsck-objects.c | 4 | ||||
-rw-r--r-- | http-fetch.c | 4 | ||||
-rw-r--r-- | update-ref.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/fsck-objects.c b/fsck-objects.c index b82685fd71..247edf0529 100644 --- a/fsck-objects.c +++ b/fsck-objects.c @@ -30,7 +30,7 @@ static void objreport(struct object *obj, const char *severity, fputs("\n", stderr); } -int objerror(struct object *obj, const char *err, ...) +static int objerror(struct object *obj, const char *err, ...) { va_list params; va_start(params, err); @@ -39,7 +39,7 @@ int objerror(struct object *obj, const char *err, ...) return -1; } -int objwarning(struct object *obj, const char *err, ...) +static int objwarning(struct object *obj, const char *err, ...) { va_list params; va_start(params, err); 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); diff --git a/update-ref.c b/update-ref.c index 01496f6a92..1863b82324 100644 --- a/update-ref.c +++ b/update-ref.c @@ -6,7 +6,7 @@ static const char git_update_ref_usage[] = "git-update-ref <refname> <value> [<o #define MAXDEPTH 5 -const char *resolve_ref(const char *path, unsigned char *sha1) +static const char *resolve_ref(const char *path, unsigned char *sha1) { int depth = MAXDEPTH, len; char buffer[256]; |