summaryrefslogtreecommitdiff
path: root/src/checkout.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2012-12-04 16:59:34 -0600
committerEdward Thomson <ethomson@edwardthomson.com>2012-12-04 16:59:34 -0600
commit05fc823fce7535faf00ad1646c087ef42f69cd67 (patch)
treec4687ed9167c07af676a4c36a4103688b311342c /src/checkout.c
parent16e6cee2fdfa724e91f8656ad64ec87bd24fe184 (diff)
downloadlibgit2-05fc823fce7535faf00ad1646c087ef42f69cd67.tar.gz
indentation fix
Diffstat (limited to 'src/checkout.c')
-rw-r--r--src/checkout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/checkout.c b/src/checkout.c
index cec52c536..8e5de0a7f 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -206,7 +206,7 @@ static int checkout_blob(
static int retrieve_symlink_caps(git_repository *repo, bool *out)
{
git_config *cfg;
- int can_symlink = 0;
+ int can_symlink = 0;
int error;
if (git_repository_config__weakptr(&cfg, repo) < 0)
@@ -220,8 +220,8 @@ static int retrieve_symlink_caps(git_repository *repo, bool *out)
error = 0;
}
- if (error >= 0)
- *out = can_symlink;
+ if (error >= 0)
+ *out = can_symlink;
return error;
}