aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2005-08-01 12:11:53 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-01 13:28:58 -0700
commit4d8fa916c9ff89613234f41b9222a2b679bce5c3 (patch)
tree1cf1d200c1c5efeb14d2a7317a933f71e15b1c7c
parent9b75e9fa7b2c9bae2d386a380e7f80a7b6c4462e (diff)
downloadgit-4d8fa916c9ff89613234f41b9222a2b679bce5c3.tar.gz
git-4d8fa916c9ff89613234f41b9222a2b679bce5c3.tar.xz
[PATCH] Fix sparse warnings
A few sparse warnings have crept in again since I checked last time: undeclared variables with global scope. Fix them by marking the private variables properly "static". Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--daemon.c4
-rw-r--r--rev-cache.c2
-rw-r--r--server-info.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/daemon.c b/daemon.c
index eeff9e7b0..b7d60918e 100644
--- a/daemon.c
+++ b/daemon.c
@@ -71,13 +71,13 @@ static int max_connections = 25;
/* These are updated by the signal handler */
static volatile unsigned int children_reaped = 0;
-pid_t dead_child[MAX_CHILDREN];
+static pid_t dead_child[MAX_CHILDREN];
/* These are updated by the main loop */
static unsigned int children_spawned = 0;
static unsigned int children_deleted = 0;
-struct child {
+static struct child {
pid_t pid;
socklen_t addrlen;
struct sockaddr_storage address;
diff --git a/rev-cache.c b/rev-cache.c
index f908ce7a3..6344d6224 100644
--- a/rev-cache.c
+++ b/rev-cache.c
@@ -5,7 +5,7 @@
struct rev_cache **rev_cache;
int nr_revs, alloc_revs;
-struct rev_list_elem *rle_free;
+static struct rev_list_elem *rle_free;
#define BATCH_SIZE 512
diff --git a/server-info.c b/server-info.c
index 3dd201afb..2b3aecab4 100644
--- a/server-info.c
+++ b/server-info.c
@@ -62,7 +62,7 @@ static int update_info_refs(int force)
}
/* packs */
-struct pack_info {
+static struct pack_info {
unsigned long latest;
struct packed_git *p;
int old_num;