diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-10-24 15:00:05 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-24 15:00:05 -0700 |
commit | 1758d236a253c10f34ae16cd2ae6d9c57eb312a7 (patch) | |
tree | 1fda16f5c560740260fe4593641b1b38d9861294 /dir.c | |
parent | e4da4fbe0eea55c26f042f76df58bfc529b46ae0 (diff) | |
parent | 03e11a715bffb0715ebcc9d6370aac7b968b3a4a (diff) | |
download | git-1758d236a253c10f34ae16cd2ae6d9c57eb312a7.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |