From 2cc31db239757590d2e7033a4bbcd6b60038561c Mon Sep 17 00:00:00 2001 From: marcan Date: Sat, 7 Mar 2009 20:13:11 +0100 Subject: [PATCH] Fix ECC alignment in boot2.c --- boot2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot2.c b/boot2.c index 47f6a14..9505bb3 100644 --- a/boot2.c +++ b/boot2.c @@ -8,7 +8,7 @@ static u8 boot2[256 << 11] MEM2_BSS ALIGNED(64); static u8 key[32] ALIGNED(64); -static u8 ecc[128] ALIGNED(64); +static u8 ecc[128] ALIGNED(128); static u8 boot2_initialized = 0; extern void *vector;