scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit a110f24eb32272ea0ba0f02ee6fa2e3d36737a29
parent b85356f211bb5933270c38929a1ce1660d6c7b81
Author: sin <sin@2f30.org>
Date:   Fri,  2 Aug 2013 14:00:28 +0100

Set MINALIGNMENT to 4 * sizeof(size_t)

Diffstat:
Mrandom/rballoc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/random/rballoc.c b/random/rballoc.c @@ -10,7 +10,7 @@ #include "tree.h" #include "spinlock.h" -enum { MINALIGNMENT = 16 }; +enum { MINALIGNMENT = 4 * sizeof(size_t) }; struct node { void *buf;