Kernel - Fixing vterm bug with 32-bit input, slight fix to keymap
[tpg/acess2.git] / Kernel / syscalls.c
index 117c51f..35e4890 100644 (file)
@@ -163,7 +163,6 @@ void SyscallHandler(tSyscallRegs *Regs)
                        {
                                tmp = (char**)Regs->Arg3;
                                CHECK_NUM_NONULL(tmp, sizeof(char**));
-                               Log("tmp = %p", tmp);
                                for(i=0;tmp[i];i++) {
                                        CHECK_NUM_NONULL( &tmp[i], sizeof(char*) );
                                        CHECK_STR_NONULL( tmp[i] );
@@ -316,7 +315,7 @@ void SyscallHandler(tSyscallRegs *Regs)
        //#if DEBUG_BUILD
        case SYS_DEBUG:
                CHECK_STR_NONULL( (char*)Regs->Arg1 );
-               LogF("Log: %08i [%i] ", now(), Threads_GetTID());
+               LogF("Log: %08lli [%i] ", now(), Threads_GetTID());
                LogF((const char*)Regs->Arg1,
                        Regs->Arg2, Regs->Arg3, Regs->Arg4, Regs->Arg5, Regs->Arg6);
                LogF("\r\n");

UCC git Repository :: git.ucc.asn.au