Fix intentation.

This commit is contained in:
David Calavera 2015-01-05 13:33:36 -08:00
parent 1ef3f0cebb
commit 66b71ea5f5
2 changed files with 2 additions and 2 deletions

View File

@ -486,7 +486,7 @@ static int lookup_remote_prune_config(git_remote *remote, git_config *config, co
if ((error = git_config_get_bool(&remote->prune_refs, config, "fetch.prune")) < 0) { if ((error = git_config_get_bool(&remote->prune_refs, config, "fetch.prune")) < 0) {
if (error == GIT_ENOTFOUND) { if (error == GIT_ENOTFOUND) {
giterr_clear(); giterr_clear();
error = 0; error = 0;
} }
} }
} }

View File

@ -508,7 +508,7 @@ void test_network_fetchlocal__prune_load_fetch_prune_config(void)
{ {
git_repository *repo; git_repository *repo;
git_remote *origin; git_remote *origin;
git_config *config; git_config *config;
git_repository *remote_repo = cl_git_sandbox_init("testrepo.git"); git_repository *remote_repo = cl_git_sandbox_init("testrepo.git");
const char *url = cl_git_path_url(git_repository_path(remote_repo)); const char *url = cl_git_path_url(git_repository_path(remote_repo));