Browse code

formatting changes

Kevin Lin authored on 2014/11/20 08:14:19
Showing 1 changed files
... ...
@@ -624,9 +624,9 @@ void *mpool_malloc(struct MP *mp, size_t size) {
624 624
     mp->avail[sbits] = f->u.next.ptr;
625 625
     /* we always have enough space for this, align_increase ensured that */
626 626
 #ifdef _WIN64
627
-	f = (struct FRAG*)(alignto((unsigned long long)f + FRAG_OVERHEAD, align)-FRAG_OVERHEAD);
627
+    f = (struct FRAG*)(alignto((unsigned long long)f + FRAG_OVERHEAD, align)-FRAG_OVERHEAD);
628 628
 #else
629
-	f = (struct FRAG*)(alignto((unsigned long)f + FRAG_OVERHEAD, align)-FRAG_OVERHEAD);
629
+    f = (struct FRAG*)(alignto((unsigned long)f + FRAG_OVERHEAD, align)-FRAG_OVERHEAD);
630 630
 #endif
631 631
     f->u.a.sbits = sbits;
632 632
     f->u.a.padding = (char*)f - (char*)fold;