Signed-off-by: Christian Couder <chrisc...@tuxfamily.org>
---
 builtin/update-index.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/builtin/update-index.c b/builtin/update-index.c
index b7b5108..b54ddc3 100644
--- a/builtin/update-index.c
+++ b/builtin/update-index.c
@@ -1107,8 +1107,6 @@ int cmd_update_index(int argc, const char **argv, const 
char *prefix)
                the_index.cache_changed |= SOMETHING_CHANGED;
        }
        if (untracked_cache > 0) {
-               struct untracked_cache *uc;
-
                if (untracked_cache < 3) {
                        setup_work_tree();
                        if (!test_if_untracked_cache_is_supported())
@@ -1117,7 +1115,7 @@ int cmd_update_index(int argc, const char **argv, const 
char *prefix)
                                return 0;
                }
                if (!the_index.untracked) {
-                       uc = xcalloc(1, sizeof(*uc));
+                       struct untracked_cache *uc = xcalloc(1, sizeof(*uc));
                        strbuf_init(&uc->ident, 100);
                        uc->exclude_per_dir = ".gitignore";
                        /* should be the same flags used by git-status */
-- 
2.6.3.391.g95a3a5c

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to