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 /sequencer.c | |
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 'sequencer.c')
-rw-r--r-- | sequencer.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sequencer.c b/sequencer.c index e1a4dd15f1..55b609a7f4 100644 --- a/sequencer.c +++ b/sequencer.c @@ -1670,7 +1670,8 @@ static int update_squash_messages(enum todo_command command, return res; } -static void flush_rewritten_pending(void) { +static void flush_rewritten_pending(void) +{ struct strbuf buf = STRBUF_INIT; struct object_id newoid; FILE *out; @@ -1695,7 +1696,8 @@ static void flush_rewritten_pending(void) { } static void record_in_rewritten(struct object_id *oid, - enum todo_command next_command) { + enum todo_command next_command) +{ FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a"); if (!out) |