diff options
author | Johan Dahlin <johan@gnome.org> | 2008-03-11 08:59:16 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-03-11 08:59:16 +0000 |
commit | 22546e50b075df1f13451a560502c194ff57b484 (patch) | |
tree | a9f5358c55f86b15af0026befaf69b4f84733541 /tools/compiler.c | |
parent | 21a72743cea44a8729aec04019ceafa3233ed44f (diff) | |
download | gobject-introspection-22546e50b075df1f13451a560502c194ff57b484.tar.gz |
Coding style fixes
2008-03-11 Johan Dahlin <johan@gnome.org>
* tools/compiler.c (main): Coding style fixes
svn path=/trunk/; revision=144
Diffstat (limited to 'tools/compiler.c')
-rw-r--r-- | tools/compiler.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/compiler.c b/tools/compiler.c index e1058d46..7c879d0e 100644 --- a/tools/compiler.c +++ b/tools/compiler.c @@ -150,20 +150,20 @@ main (int argc, char ** argv) * A method of finding out if an external reference is * needed */ - for (c=module->entries; c; c = c->next) + for (c = module->entries; c; c = c->next) { GIdlNode *node = (GIdlNode*) c->data; - g_idl_compiler_add_entry(ctx, node); + g_idl_compiler_add_entry (ctx, node); } - for (c=module->entries; c; c = c->next) + for (c = module->entries; c; c = c->next) { GIdlNode *node = (GIdlNode*) c->data; - entry_id = g_idl_compiler_get_entry_id(ctx, node->name); + entry_id = g_idl_compiler_get_entry_id (ctx, node->name); - g_idl_compiler_write_node(node, entry_id, ctx); + g_idl_compiler_write_node (node, entry_id, ctx); } if (output == NULL) @@ -190,9 +190,9 @@ main (int argc, char ** argv) g_free (filename); } - g_idl_compiler_context_finalize(ctx, file, module->shared_library, &err); + g_idl_compiler_context_finalize (ctx, file, module->shared_library, &err); - g_idl_compiler_context_destroy(ctx); + g_idl_compiler_context_destroy (ctx); /* when writing to stdout, stop after the first module */ if (m->next && !output && !mname) |