From 1a44ec9eeffbc4b95241277fdc6f95a36639a1ed Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 25 Jan 2013 16:47:31 -0700 Subject: [PATCH] fix incorrect macro name in bootimage.cpp --- src/bootimage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bootimage.cpp b/src/bootimage.cpp index ed7a271cb2..edb82b0527 100644 --- a/src/bootimage.cpp +++ b/src/bootimage.cpp @@ -1992,9 +1992,10 @@ main(int ac, const char** av) // PowerPC and ARM). When that limitation is removed, we'll be able // to specify a capacity as large as we like here: #if (AVIAN_TARGET_ARCH == AVIAN_ARCH_X86_64) \ - || (AVIAN_TARGET_ARCH == AVIAN_ARCH_X86_32) + || (AVIAN_TARGET_ARCH == AVIAN_ARCH_X86) const unsigned CodeCapacity = 128 * 1024 * 1024; #else +# error "wtf?" const unsigned CodeCapacity = 30 * 1024 * 1024; #endif