Repository

Fix signed compraison

Parent commits : 74c84c7ada796cfd3228fdccee3e10e8ff69a178,
Children commits :

By Laurent Defert on 2009-11-28 22:57:33
Fix signed compraison

Difference with parent commit 74c84c7ada796cfd3228fdccee3e10e8ff69a178
Files modified:
src/process-trace.cpp
--- 
+++ 
@@ -91,7 +91,7 @@
 		if(replace_call)
 		{
 #if __WORDSIZE == 64
-			if(regs.rax != GetPID())
+			if((int)regs.rax != GetPID())
 				printf("Looks like the output could not be hijacked\n");
 			regs.rax = return_code;
 #else