diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-01-18 13:49:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-18 13:49:52 -0800 |
commit | 3434569fc206c2f4bc434571d202f2961aa905e5 (patch) | |
tree | 87899124d519d771b5b4c15a779ae594ef44d801 /t | |
parent | Merge branch 'ds/gc-doc-typofix' (diff) | |
parent | style: the opening '{' of a function is in a separate line (diff) | |
download | tgif-3434569fc206c2f4bc434571d202f2961aa905e5.tar.xz |
Merge branch 'nd/style-opening-brace'
Code clean-up.
* nd/style-opening-brace:
style: the opening '{' of a function is in a separate line
Diffstat (limited to 't')
-rw-r--r-- | t/helper/test-sigchain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/helper/test-sigchain.c b/t/helper/test-sigchain.c index 77ac5bc33f..d013bccdda 100644 --- a/t/helper/test-sigchain.c +++ b/t/helper/test-sigchain.c @@ -14,7 +14,8 @@ X(two) X(three) #undef X -int cmd__sigchain(int argc, const char **argv) { +int cmd__sigchain(int argc, const char **argv) +{ sigchain_push(SIGTERM, one); sigchain_push(SIGTERM, two); sigchain_push(SIGTERM, three); |