From 22546e50b075df1f13451a560502c194ff57b484 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Tue, 11 Mar 2008 08:59:16 +0000 Subject: Coding style fixes 2008-03-11 Johan Dahlin * tools/compiler.c (main): Coding style fixes svn path=/trunk/; revision=144 --- tools/compiler.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tools/compiler.c') 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) -- cgit v1.2.1