From: Wolfgang (Blub) Bumiller Date: Wed, 25 Apr 2012 11:22:48 +0000 (+0200) Subject: style-fix X-Git-Tag: 0.1-rc1~626 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e9b581adfbb079864f7ef5f198e238caaad80181;p=xonotic%2Fgmqcc.git style-fix --- diff --git a/ast.c b/ast.c index 52ffb80..26389ca 100644 --- a/ast.c +++ b/ast.c @@ -6,10 +6,10 @@ #define ast_setfunc(me, fn, what) ( *(void**)&((me)->fn) = what ) -#define ast_instantiate(T, ctx, destroyfn) \ - T *self = (T*)mem_a(sizeof(T)); \ - ast_node_init((ast_node*)self, ctx); \ - ast_setfunc(&((ast_node*)self)->node, destroy, destroyfn) +#define ast_instantiate(T, ctx, destroyfn) \ + T *self = (T*)mem_a(sizeof(T)); \ + ast_node_init((ast_node*)self, ctx); \ + ast_setfunc(&((ast_node*)self)->node, destroy, destroyfn) /* It must not be possible to get here. */ static void _ast_node_destroy(ast_node *self)