mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
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:
parent
2ee3771125
commit
4800518a31
@ -1671,7 +1671,7 @@ main(int ac, const char** av)
|
|||||||
p->initialize(&image, code, CodeCapacity);
|
p->initialize(&image, code, CodeCapacity);
|
||||||
|
|
||||||
Machine* m = new (h->allocate(sizeof(Machine))) Machine
|
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);
|
Thread* t = p->makeThread(m, 0, 0);
|
||||||
|
|
||||||
enter(t, Thread::ActiveState);
|
enter(t, Thread::ActiveState);
|
||||||
|
Loading…
Reference in New Issue
Block a user