]> git.proxmox.com Git - libgit2.git/commitdiff
indentation fix
authorEdward Thomson <ethomson@edwardthomson.com>
Tue, 4 Dec 2012 22:59:34 +0000 (16:59 -0600)
committerEdward Thomson <ethomson@edwardthomson.com>
Tue, 4 Dec 2012 22:59:34 +0000 (16:59 -0600)
src/checkout.c

index cec52c5367108f6591c706080f0af2c995156e4e..8e5de0a7f85a4d9f5b8bbde4285e6c2ddb614edc 100644 (file)
@@ -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;
 }