From ed72182bcf8117fd6fce069b7b55dfdb6562e0c3 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Tue, 5 Jul 2011 01:09:37 -0700 Subject: [PATCH] Fix MSVC compilation issue --- src/repository.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/repository.c b/src/repository.c index 843582433..123765ff5 100644 --- a/src/repository.c +++ b/src/repository.c @@ -605,7 +605,7 @@ static int repo_init_createhead(git_repository *repo) return git_reference_create_symbolic(&head_reference, repo, GIT_HEAD_FILE, GIT_REFS_HEADS_MASTER_FILE, 0); } -static int repo_init_structure(const char *git_dir) +static int repo_init_structure(const char *git_dir, int is_bare) { const int mode = 0755; /* or 0777 ? */ int error; @@ -617,7 +617,7 @@ static int repo_init_structure(const char *git_dir) #ifdef GIT_WIN32 /* Hides the ".git" directory */ - if (!results->is_bare) { + if (!is_bare) { error = p_hide_directory__w32(git_dir); if (error < GIT_SUCCESS) return git__rethrow(error, "Failed to initialize repository structure"); @@ -668,7 +668,7 @@ int git_repository_init(git_repository **repo_out, const char *path, unsigned is return repo_init_reinit(repository_path, is_bare); } - error = repo_init_structure(repository_path); + error = repo_init_structure(repository_path, is_bare); if (error < GIT_SUCCESS) goto cleanup;