shithub: mc

Download patch

ref: b670491dc82509c0b000688f179bb6266a24f314
parent: 0a48304b68829640d94f52931f866fc45d4ecb87
author: Ori Bernstein <[email protected]>
date: Thu Aug 16 21:24:41 EDT 2012

Align stuff.

--- a/alloc.myr
+++ b/alloc.myr
@@ -35,10 +35,10 @@
 ;;
 
 type slab = struct
-	head	: byte* /* head of virtual addresses, so we don't leak address space */
-	next	: slab* /* the next slab on the chain */
+	head		: byte*	/* head of virtual addresses, so we don't leak address space */
+	next		: slab*	/* the next slab on the chain */
 	freehd	: chunk*	/* the nodes we're allocating */
-	nfree	: size  /* the number of free nodes */
+	nfree	: size	/* the number of free nodes */
 ;;
 
 type chunk = struct	/* NB: must be smaller than sizeof(slab) */