fetch_pack(): reindent function decl and defn
authorMichael Haggerty <mhagger@alum.mit.edu>
Sun, 9 Sep 2012 06:19:39 +0000 (08:19 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 12 Sep 2012 18:46:31 +0000 (11:46 -0700)
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch-pack.c
fetch-pack.h
index fdda36f1497eaa971e81cc1df0fb21ada6d21120..30990c0a8314d0f1d5e6346550ce3cc9e3224656 100644 (file)
@@ -1082,10 +1082,10 @@ static int compare_heads(const void *a, const void *b)
 struct ref *fetch_pack(struct fetch_pack_args *my_args,
                       int fd[], struct child_process *conn,
                       const struct ref *ref,
-               const char *dest,
-               int nr_heads,
-               char **heads,
-               char **pack_lockfile)
+                      const char *dest,
+                      int nr_heads,
+                      char **heads,
+                      char **pack_lockfile)
 {
        struct stat st;
        struct ref *ref_cpy;
index 7c2069c97234453cb6a0a774c1859b7055b791d8..1dbe90fa43c5aef507e9f61cbc6670afb40471df 100644 (file)
@@ -18,11 +18,11 @@ struct fetch_pack_args {
 };
 
 struct ref *fetch_pack(struct fetch_pack_args *args,
-               int fd[], struct child_process *conn,
-               const struct ref *ref,
-               const char *dest,
-               int nr_heads,
-               char **heads,
-               char **pack_lockfile);
+                      int fd[], struct child_process *conn,
+                      const struct ref *ref,
+                      const char *dest,
+                      int nr_heads,
+                      char **heads,
+                      char **pack_lockfile);
 
 #endif