Fix some minor warnings.

This commit is contained in:
Unknown W. Brackets
2013-07-07 20:31:04 -07:00
parent 67e2c1fb98
commit a32cf817ff
11 changed files with 23 additions and 15 deletions
+1 -1
View File
@@ -1349,7 +1349,7 @@ u32 sceKernelGetModuleIdByAddress(u32 moduleAddr)
state.result = SCE_KERNEL_ERROR_UNKNOWN_MODULE;
kernelObjects.Iterate(&__GetModuleIdByAddressIterator, &state);
if (state.result == SCE_KERNEL_ERROR_UNKNOWN_MODULE)
if (state.result == (SceUID)SCE_KERNEL_ERROR_UNKNOWN_MODULE)
ERROR_LOG(HLE, "sceKernelGetModuleIdByAddress(%08x): module not found", moduleAddr)
else
DEBUG_LOG(HLE, "%x=sceKernelGetModuleIdByAddress(%08x)", state.result, moduleAddr);