]> git.proxmox.com Git - libgit2.git/commitdiff
Fix clone.c's indentation
authorBen Straub <bs@github.com>
Thu, 18 Oct 2012 16:57:19 +0000 (09:57 -0700)
committerBen Straub <bs@github.com>
Sat, 20 Oct 2012 02:36:22 +0000 (19:36 -0700)
src/clone.c

index 0acf588b4dfcc56b074fccac7afc41df4acdb54b..5f4858d84bfffb22b0f2b07a4cf93c60e18d8f84 100644 (file)
@@ -337,10 +337,11 @@ static int clone_internal(
        return retcode;
 }
 
-int git_clone_bare(git_repository **out,
-                                                const char *origin_url,
-                                                const char *dest_path,
-                                                git_indexer_stats *fetch_stats)
+int git_clone_bare(
+               git_repository **out,
+               const char *origin_url,
+               const char *dest_path,
+               git_indexer_stats *fetch_stats)
 {
        assert(out && origin_url && dest_path);
 
@@ -354,11 +355,12 @@ int git_clone_bare(git_repository **out,
 }
 
 
-int git_clone(git_repository **out,
-                                 const char *origin_url,
-                                 const char *workdir_path,
-                                 git_indexer_stats *fetch_stats,
-                                 git_checkout_opts *checkout_opts)
+int git_clone(
+               git_repository **out,
+               const char *origin_url,
+               const char *workdir_path,
+               git_indexer_stats *fetch_stats,
+               git_checkout_opts *checkout_opts)
 {
        assert(out && origin_url && workdir_path);