Kernel/VFS - Fixed missuse of strcmp that caused userland compilations to break
[tpg/acess2.git] / KernelLand / Kernel / arch / x86 / errors.c
index d2d2cef..b69f5f8 100644 (file)
@@ -80,7 +80,6 @@ void ErrorHandler(tRegs *Regs)
        // Page Fault
        if(Regs->int_num == 14)
        {
-               __asm__ __volatile__ ("sti");   // Should be OK, TODO: Test
                __asm__ __volatile__ ("mov %%cr2, %0":"=r"(cr));
                MM_PageFault( cr, Regs->err_code, Regs );
                return ;
@@ -245,7 +244,7 @@ void Error_Backtrace(Uint eip, Uint ebp)
                ebp = *(Uint*)ebp;
                i++;
        }
-       LogF("\n");
+       LogF("\r\n");
 }
 
 /**

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