Fix some init/type warnings.
This commit is contained in:
parent
98f99e1e3c
commit
06c19622d5
9 changed files with 12 additions and 12 deletions
|
@ -923,7 +923,7 @@ void __KernelThreadingInit()
|
|||
Memory::Memcpy(idleThreadHackAddr, idleThreadCode, sizeof(idleThreadCode));
|
||||
|
||||
u32 pos = idleThreadHackAddr + sizeof(idleThreadCode);
|
||||
for (int i = 0; i < ARRAY_SIZE(threadHacks); ++i) {
|
||||
for (size_t i = 0; i < ARRAY_SIZE(threadHacks); ++i) {
|
||||
__KernelWriteFakeSysCall(threadHacks[i].nid, threadHacks[i].addr, pos);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue