Commit 66b71ea5 by David Calavera

Fix intentation.

parent 1ef3f0ce
...@@ -486,7 +486,7 @@ static int lookup_remote_prune_config(git_remote *remote, git_config *config, co ...@@ -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;
} }
} }
} }
......
...@@ -508,7 +508,7 @@ void test_network_fetchlocal__prune_load_fetch_prune_config(void) ...@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment