Commit 914fa0bf authored by Rusty Russell's avatar Rusty Russell

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

parent 6b73d119
...@@ -16,23 +16,20 @@ static struct test *tests = NULL; ...@@ -16,23 +16,20 @@ static struct test *tests = NULL;
static struct obj *objs = NULL; static struct obj *objs = NULL;
static int verbose; static int verbose;
struct test_type struct test_type {
{
const char *name; const char *name;
void (*buildfn)(const char *dir, struct test_type *t, const char *name, void (*buildfn)(const char *dir, struct test_type *t, const char *name,
const char *apiobj); const char *apiobj);
void (*runfn)(const char *name); void (*runfn)(const char *name);
}; };
struct test struct test {
{
struct test *next; struct test *next;
struct test_type *type; struct test_type *type;
char *name; char *name;
}; };
struct obj struct obj {
{
struct obj *next; struct obj *next;
bool generate; bool generate;
char *name; char *name;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment