diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2011-03-16 02:08:34 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-16 12:49:02 -0700 |
commit | 9cba13ca5d233a4e1a7068f3f5ed5836a081dcc0 (patch) | |
tree | 434a9b6b6df083e8c340541def4c29c4896b0721 /transport-helper.c | |
parent | c6c8d0b797e33ce1f22d50b46d9c6eba91ed2cbc (diff) | |
download | git-9cba13ca5d233a4e1a7068f3f5ed5836a081dcc0.tar.gz |
standardize brace placement in struct definitions
In a struct definitions, unlike functions, the prevailing style is for
the opening brace to go on the same line as the struct name, like so:
struct foo {
int bar;
char *baz;
};
Indeed, grepping for 'struct [a-z_]* {$' yields about 5 times as many
matches as 'struct [a-z_]*$'.
Linus sayeth:
Heretic people all over the world have claimed that this inconsistency
is ... well ... inconsistent, but all right-thinking people know that
(a) K&R are _right_ and (b) K&R are right.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport-helper.c')
-rw-r--r-- | transport-helper.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/transport-helper.c b/transport-helper.c index 4e4754c32b..8866adf088 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -12,8 +12,7 @@ static int debug; -struct helper_data -{ +struct helper_data { const char *name; struct child_process *helper; FILE *out; |