From 39a82a4006595c085c110fc71e4633ff50595df6 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 15 Jun 2010 19:49:48 -0600 Subject: [PATCH] update bootimage.cpp to reflect BootImage restructuring --- src/bootimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootimage.cpp b/src/bootimage.cpp index 7a9d82e7a3..f458e55b71 100644 --- a/src/bootimage.cpp +++ b/src/bootimage.cpp @@ -87,7 +87,7 @@ makeCodeImage(Thread* t, Zone* zone, BootImage* image, uint8_t* code, object method = tripleFirst(t, calls); uintptr_t address; if (methodFlags(t, method) & ACC_NATIVE) { - address = reinterpret_cast(code + image->nativeThunk); + address = reinterpret_cast(code + image->thunks.native.start); } else { address = methodCompiled(t, method); }