summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2016-09-22 16:11:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-22 20:42:18 (GMT)
commit68e3d6292f27f123c072175748183c9cb9bc1c70 (patch)
tree3a3fcb89a074a31c3f0689c207f3390612b12379 /cache.h
parent6fe1b1407ed91823daa5d487abe457ff37463349 (diff)
downloadgit-68e3d6292f27f123c072175748183c9cb9bc1c70.zip
git-68e3d6292f27f123c072175748183c9cb9bc1c70.tar.gz
git-68e3d6292f27f123c072175748183c9cb9bc1c70.tar.bz2
introduce CHECKOUT_INIT
Add a static initializer for struct checkout and use it throughout the code base. It's shorter, avoids a memset(3) call and makes sure the base_dir member is initialized to a valid (empty) string. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index d0494c8..5d9116c 100644
--- a/cache.h
+++ b/cache.h
@@ -1354,6 +1354,7 @@ struct checkout {
not_new:1,
refresh_cache:1;
};
+#define CHECKOUT_INIT { NULL, "" }
#define TEMPORARY_FILENAME_LENGTH 25
extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath);