summaryrefslogtreecommitdiff
path: root/transport.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-08 23:35:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-08 23:35:32 (GMT)
commitf3fa1838024dc0f3741d2f9654af92f6a1bb34bd (patch)
tree0a8ba5a56fe117125b506ea9529186aeb1c97ff4 /transport.c
parent5c355059c379a55366bed573d4e65dba4b5a0565 (diff)
downloadgit-f3fa1838024dc0f3741d2f9654af92f6a1bb34bd.zip
git-f3fa1838024dc0f3741d2f9654af92f6a1bb34bd.tar.gz
git-f3fa1838024dc0f3741d2f9654af92f6a1bb34bd.tar.bz2
Style: place opening brace of a function definition at column 1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.c')
-rw-r--r--transport.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/transport.c b/transport.c
index d44fe7c..fa5cfbb 100644
--- a/transport.c
+++ b/transport.c
@@ -380,7 +380,8 @@ static int disconnect_walker(struct transport *transport)
}
#ifndef NO_CURL
-static int curl_transport_push(struct transport *transport, int refspec_nr, const char **refspec, int flags) {
+static int curl_transport_push(struct transport *transport, int refspec_nr, const char **refspec, int flags)
+{
const char **argv;
int argc;
int err;
@@ -646,7 +647,8 @@ static int fetch_refs_via_pack(struct transport *transport,
return 0;
}
-static int git_transport_push(struct transport *transport, int refspec_nr, const char **refspec, int flags) {
+static int git_transport_push(struct transport *transport, int refspec_nr, const char **refspec, int flags)
+{
struct git_transport_data *data = transport->data;
const char **argv;
char *rem;