[PATCH 13/19] Remove active_cache, active_nr, and active_alloc from public view
From: Brad Roberts <hidden>
Date: 2016-06-15 22:41:53
tree 9198385d73b718a2fd016362a9d93ccce1e7423c parent cc414a188c0e8fefa7bea4f969cc7adfe4265d6f author Brad Roberts [off-list ref] 1114083132 -0700 committer Brad Roberts [off-list ref] 1114083132 -0700 [PATCH] Remove active_cache, active_nr, and active_alloc from public view Signed-off-by: Brad Roberts <redacted> --- cache.h | 2 -- read-cache.c | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) Index: cache.h ===================================================================
--- cc414a188c0e8fefa7bea4f969cc7adfe4265d6f:1/cache.h (mode:100644 sha1:74d816c34245e0dde41643188f38cf99ca75e75f)
+++ ff3667537379d5b0680e8c4f9a14d82dc9835430:1/cache.h (mode:100644 sha1:b29bb0ca5e7be15c0b423101f5cf381ee68f139e)@@ -78,8 +78,6 @@ #define cache_entry_size(len) ((offsetof(struct cache_entry,name) + (len) + 8) & ~7) const char *sha1_file_directory; -struct cache_entry **active_cache; -unsigned int active_nr, active_alloc; #define DB_ENVIRONMENT "SHA1_FILE_DIRECTORY" #define DEFAULT_DB_ENVIRONMENT ".git/objects"
Index: read-cache.c ===================================================================
--- cc414a188c0e8fefa7bea4f969cc7adfe4265d6f:1/read-cache.c (mode:100644 sha1:286f7136bc164f3a2317bb492138d9221efb4025)
+++ ff3667537379d5b0680e8c4f9a14d82dc9835430:1/read-cache.c (mode:100644 sha1:0e972a80fa19eb77fd547fb579354af784be3ac4)@@ -6,8 +6,8 @@ #include <stdarg.h> #include "cache.h" -struct cache_entry **active_cache = NULL; -unsigned int active_nr = 0, active_alloc = 0; +static struct cache_entry **active_cache = NULL; +static unsigned int active_nr = 0, active_alloc = 0; int cache_match_stat(struct cache_entry *ce, struct stat *st) {