From 103f958bae5a40a4fc37b93f000a9b336b17f2d0 Mon Sep 17 00:00:00 2001
From: David Anderson <dvander@alliedmods.net>
Date: Thu, 14 Sep 2006 17:08:33 +0000
Subject: [PATCH] fixed whitespace

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%4071
---
 sourcepawn/compiler/sc3.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sourcepawn/compiler/sc3.c b/sourcepawn/compiler/sc3.c
index 8c306b34..a8124de6 100644
--- a/sourcepawn/compiler/sc3.c
+++ b/sourcepawn/compiler/sc3.c
@@ -1218,9 +1218,9 @@ static int hier13(value *lval)
     heap=popsaveheaplist();
     dynarray_from_heaplist(heap);
     setlabel(flab2);
-	if (array1 && array2) {
+    if (array1 && array2) {
       markheap(HEAPUSE_DYNAMIC, 0);
-	}
+    }
     if (lval->ident==iARRAY)
       lval->ident=iREFARRAY;    /* iARRAY becomes iREFARRAY */
     else if (lval->ident!=iREFARRAY)
@@ -2002,7 +2002,7 @@ static void setdefarray(cell *string,cell size,cell array_sz,cell *dataaddr,int
      */
     assert(array_sz>=size);
     modheap((int)array_sz*sizeof(cell));
-	markheap(HEAPUSE_STATIC, array_sz);
+    markheap(HEAPUSE_STATIC, array_sz);
     /* ??? should perhaps fill with zeros first */
     memcopy(size*sizeof(cell));
     moveto1();