From 4800518a316613c9f8ec990b51e2b5c86594e29a Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 27 Mar 2012 08:22:35 -0600 Subject: [PATCH] fix bootimage.cpp build regression I forgot to update bootimage.cpp when I added a parameter to Machine's constructor in d78247a. --- src/bootimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootimage.cpp b/src/bootimage.cpp index dd408705e2..6ece510972 100644 --- a/src/bootimage.cpp +++ b/src/bootimage.cpp @@ -1671,7 +1671,7 @@ main(int ac, const char** av) p->initialize(&image, code, CodeCapacity); Machine* m = new (h->allocate(sizeof(Machine))) Machine - (s, h, f, 0, p, c, 0, 0, 0, 0); + (s, h, f, 0, p, c, 0, 0, 0, 0, 128 * 1024); Thread* t = p->makeThread(m, 0, 0); enter(t, Thread::ActiveState);