diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-12-09 11:25:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-10 15:41:09 +0900 |
commit | 3b3357626edc841a51d8885ddf6986bab5b6f778 (patch) | |
tree | c28a424e00c4fc8ca7656be02e2951396d91f9ad /builtin/push.c | |
parent | 5d826e972970a784bd7a7bdf587512510097b8c7 (diff) | |
download | git-3b3357626edc841a51d8885ddf6986bab5b6f778.tar.gz |
style: the opening '{' of a function is in a separate line
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/push.c')
-rw-r--r-- | builtin/push.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/builtin/push.c b/builtin/push.c index 8bb8a0849b..759812d1d5 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -143,7 +143,9 @@ static int push_url_of_remote(struct remote *remote, const char ***url_p) return remote->url_nr; } -static NORETURN int die_push_simple(struct branch *branch, struct remote *remote) { +static NORETURN int die_push_simple(struct branch *branch, + struct remote *remote) +{ /* * There's no point in using shorten_unambiguous_ref here, * as the ambiguity would be on the remote side, not what |