From e9b581adfbb079864f7ef5f198e238caaad80181 Mon Sep 17 00:00:00 2001
From: "Wolfgang (Blub) Bumiller" <blub@speed.at>
Date: Wed, 25 Apr 2012 13:22:48 +0200
Subject: [PATCH] style-fix

---
 ast.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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)
-- 
2.39.5