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 | |
parent | Git 2.20 (diff) | |
download | tgif-3b3357626edc841a51d8885ddf6986bab5b6f778.tar.xz |
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')
-rw-r--r-- | builtin/config.c | 3 | ||||
-rw-r--r-- | builtin/push.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/builtin/config.c b/builtin/config.c index 84385ef165..99bc7ef64e 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -164,7 +164,8 @@ static NORETURN void usage_builtin_config(void) usage_with_options(builtin_config_usage, builtin_config_options); } -static void check_argc(int argc, int min, int max) { +static void check_argc(int argc, int min, int max) +{ if (argc >= min && argc <= max) return; if (min == max) 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 |