Browse Source

Fix struct line spacing (opening bracked on same line is Linux standard)

Rusty Russell 17 years ago
parent
commit
914fa0bf6e
1 changed files with 3 additions and 6 deletions
  1. 3 6
      tools/run_tests.c

+ 3 - 6
tools/run_tests.c

@@ -16,23 +16,20 @@ static struct test *tests = NULL;
 static struct obj *objs = NULL;
 static int verbose;
 
-struct test_type
-{
+struct test_type {
 	const char *name;
 	void (*buildfn)(const char *dir, struct test_type *t, const char *name,
 			const char *apiobj);
 	void (*runfn)(const char *name);
 };
 
-struct test
-{
+struct test {
 	struct test *next;
 	struct test_type *type;
 	char *name;
 };
 
-struct obj
-{
+struct obj {
 	struct obj *next;
 	bool generate;
 	char *name;