fix bootimage.cpp build regression

I forgot to update bootimage.cpp when I added a parameter to Machine's
constructor in d78247a.
This commit is contained in:
Joel Dice 2012-03-27 08:22:35 -06:00
parent 2ee3771125
commit 4800518a31

View File

@ -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);