summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-10-24 22:00:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-10-24 22:00:05 (GMT)
commit1758d236a253c10f34ae16cd2ae6d9c57eb312a7 (patch)
tree1fda16f5c560740260fe4593641b1b38d9861294 /dir.c
parente4da4fbe0eea55c26f042f76df58bfc529b46ae0 (diff)
parent03e11a715bffb0715ebcc9d6370aac7b968b3a4a (diff)
downloadgit-1758d236a253c10f34ae16cd2ae6d9c57eb312a7.zip
git-1758d236a253c10f34ae16cd2ae6d9c57eb312a7.tar.gz
git-1758d236a253c10f34ae16cd2ae6d9c57eb312a7.tar.bz2
Merge branch 'nd/dir-prep-exclude-cleanup'
Code clean-up. * nd/dir-prep-exclude-cleanup: dir.c: remove the second declaration of "stk" in prep_exclude()
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index bd274a7..3f7a025 100644
--- a/dir.c
+++ b/dir.c
@@ -826,9 +826,9 @@ static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
current = stk ? stk->baselen : -1;
strbuf_setlen(&dir->basebuf, current < 0 ? 0 : current);
while (current < baselen) {
- struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
const char *cp;
+ stk = xcalloc(1, sizeof(*stk));
if (current < 0) {
cp = base;
current = 0;