diff --git a/Kernel/arch/x86/errors.c b/Kernel/arch/x86/errors.c
index d73fcea4a26f90f2cc8db9ebf8fea24d53b0d59b..c1c3ae676e60e45668a77d50ec2ab67638628750 100644
--- a/Kernel/arch/x86/errors.c
+++ b/Kernel/arch/x86/errors.c
@@ -199,8 +199,8 @@ void Proc_PrintBacktrace(void)
 void Error_Backtrace(Uint eip, Uint ebp)
 {
 	 int	i = 0;
-	Uint	delta = 0;
-	char	*str = NULL;
+//	Uint	delta = 0;
+//	char	*str = NULL;
 	
 	//if(eip < 0xC0000000 && eip > 0x1000)
 	//{
@@ -221,10 +221,10 @@ void Error_Backtrace(Uint eip, Uint ebp)
 	}
 	
 	//str = Debug_GetSymbol(eip, &delta);
-	if(str == NULL)
+//	if(str == NULL)
 		LogF("Backtrace: 0x%x", eip);
-	else
-		LogF("Backtrace: %s+0x%x", str, delta);
+//	else
+//		LogF("Backtrace: %s+0x%x", str, delta);
 	if(!MM_GetPhysAddr(ebp))
 	{
 		LogF("\nBacktrace: Invalid EBP, stopping\n");
@@ -236,10 +236,10 @@ void Error_Backtrace(Uint eip, Uint ebp)
 	{
 		if( ebp >= MM_KERNEL_STACKS_END )	break;
 		//str = Debug_GetSymbol(*(Uint*)(ebp+4), &delta);
-		if(str == NULL)
+//		if(str == NULL)
 			LogF(" >> 0x%x", *(Uint*)(ebp+4));
-		else
-			LogF(" >> %s+0x%x", str, delta);
+//		else
+//			LogF(" >> %s+0x%x", str, delta);
 		ebp = *(Uint*)ebp;
 		i++;
 	}
diff --git a/Kernel/arch/x86/proc.asm b/Kernel/arch/x86/proc.asm
index 014cfed1cac482bce97c168e1c976cf7211cdf3f..00ea9e1e6012f0a76630b7273633fa897835a5f2 100644
--- a/Kernel/arch/x86/proc.asm
+++ b/Kernel/arch/x86/proc.asm
@@ -76,7 +76,6 @@ SwitchTasks:
 	jmp ecx
 
 .restore:
-
 	popa
 	xor eax, eax
 	ret