Fixed wrong log message

This commit is contained in:
shenweip 2013-08-14 07:22:22 +08:00
parent 75fe4296b7
commit 1527934d25

View file

@ -743,7 +743,7 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
u32_le *exportPtr = residentPtr + ent->fcount + variableCount;
if (ent->size != 4) {
WARN_LOG_REPORT(LOADER, "Unexpected export module entry size %d, vcountNew=%08x, unknown1=%08x, unknown2=&08x", ent->size, ent->vcountNew, ent->unknown1, ent->unknown2);
WARN_LOG_REPORT(LOADER, "Unexpected export module entry size %d, vcountNew=%08x, unknown1=%08x, unknown2=%08x", ent->size, ent->vcountNew, ent->unknown1, ent->unknown2);
}
for (u32 j = 0; j < ent->fcount; j++) {