From 826020c2854cc07e7f2d6b6486f91ab74a521041 Mon Sep 17 00:00:00 2001 From: pancake Date: Thu, 20 Jun 2013 02:53:34 +0200 Subject: [PATCH] Remove debug printfs --- libr/anal/p/anal_x86_udis.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libr/anal/p/anal_x86_udis.c b/libr/anal/p/anal_x86_udis.c index d1404acd91..9b23ac5d87 100644 --- a/libr/anal/p/anal_x86_udis.c +++ b/libr/anal/p/anal_x86_udis.c @@ -283,9 +283,7 @@ int x86_udis86_op(RAnal *anal, RAnalOp *op, ut64 addr, const ut8 *data, int len) op->stackptr = 0; if (u.operand[0].type == UD_OP_REG) { if (u.operand[0].base == UD_R_RSP) { -int o = (int)getval (&u.operand[1]); -eprintf ("FUC\n"); -eprintf ("O = %d\n", o); + int o = (int)getval (&u.operand[1]); op->stackop = R_ANAL_STACK_INC; if (u.mnemonic ==UD_Iadd) { op->stackptr = -o; @@ -294,7 +292,7 @@ eprintf ("O = %d\n", o); } } } - op->stackptr = 4; + op->stackptr = 4; break; case UD_Iadc: case UD_Iinc: