Keep unknown syscall reporting the same.

Oops.
This commit is contained in:
Unknown W. Brackets
2013-09-01 00:46:48 -07:00
parent da0c9a86e5
commit a05c78f8fc
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -599,7 +599,7 @@ void ImportFuncSymbol(const FuncSymbolImport &func) {
// It hasn't been exported yet, but hopefully it will later.
if (GetModuleIndex(func.moduleName) != -1) {
WARN_LOG_REPORT(LOADER, "Unknown syscall (%s,%08x) imported", func.moduleName, func.nid);
WARN_LOG_REPORT(LOADER, "Unknown syscall in known module: %s 0x%08x", func.moduleName, func.nid);
} else {
INFO_LOG(LOADER, "Function (%s,%08x) unresolved, storing for later resolving", func.moduleName, func.nid);
}