Fixes compilation error

This commit is contained in:
Fabian Schaffert 2014-11-24 22:05:17 +01:00
parent 795729a0b7
commit ad01829b23

View File

@ -463,8 +463,8 @@ namespace loader
be_t<u32>::make(BLR())
};
auto& tbl = vm::get().alloc<tbl_item>(stub->s_imports);
auto& dst = vm::get().alloc<stub_data_t>(stub->s_imports);
const auto& tbl = vm::get().alloc<tbl_item>(stub->s_imports);
const auto& dst = vm::get().alloc<stub_data_t>(stub->s_imports);
for (u32 i = 0; i < stub->s_imports; ++i)
{