]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
style-fix
authorWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 25 Apr 2012 11:22:48 +0000 (13:22 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 25 Apr 2012 15:27:47 +0000 (17:27 +0200)
ast.c

diff --git a/ast.c b/ast.c
index 52ffb80059f742cd58790661bbd0f67d0ed7c2ea..26389cab89b14bec8406648e9ffa859d7785489a 100644 (file)
--- 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)